view src/libpam/mod.rs @ 151:3a7cf05d2b5f

Fix libpam-sys-test from panicking over `mod aliases`.
author Paul Fisher <paul@pfish.zone>
date Mon, 07 Jul 2025 19:04:52 -0400
parents 1bc52025156b
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;
mod module;
mod question;

#[doc(inline)]
pub use handle::{LibPamHandle, LibPamTransaction, TransactionBuilder};