view src/libpam/mod.rs @ 196:568faf823f34 libpam-sys/v0.2.0

Added tag v0.1.1 for changeset a47e1f6e4faa
author Paul Fisher <paul@pfish.zone>
date Sun, 03 Aug 2025 01:10:05 -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};