view src/libpam/mod.rs @ 142:5c1e315c18ff

minor doc nicening
author Paul Fisher <paul@pfish.zone>
date Sat, 05 Jul 2025 21:49:27 -0400
parents a508a69c068a
children 56b559b7ecea
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 memory;
mod module;
mod question;

#[doc(inline)]
pub use handle::{OwnedLibPamHandle, RawPamHandle};