Mercurial > crates > nonstick
view src/libpam/mod.rs @ 188:e9f224e52b3e
Added tag v0.1.0 for changeset 18e865d366ba
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Thu, 31 Jul 2025 15:23:22 -0400 |
parents | 46e8ce5cd5d1 |
children |
line wrap: on
line source
//! The implementation of the PAM interface that wraps `libpam`. //! //! While you're going to want to write PAM modules and applications against //! the interfaces in [the `handle` module](crate::handle) for testability, //! this is (probably) what will be used behind the scenes. #![allow(dead_code)] mod answer; mod conversation; mod environ; mod handle; mod items; mod memory; #[doc(hidden)] pub mod module; mod question; #[doc(inline)] pub use handle::{LibPamHandle, LibPamTransaction, TransactionBuilder};