1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// We want to pass PamHandles by ref as they are opaque
//! Rustified API to the Linux-PAM authentication libary
//!
//! This library supports both PAM clients and modules through the respective
//! cargo features. If you do not want to use any high-level API, wrappers
//! for the raw PAM related functions from `pam_sys` are also exported at crate
//! root.
// Reexport pam_sys so downstream users don't need to depend on it
pub use pam_sys as ffi;
pub use crate::;
pub use crate::;
pub use Client;
pub use PamModule;