comparison src/libpam/mod.rs @ 146:1bc52025156b

Split PAM items into their own separate struct. To trim down the number of methods on `PamShared`, this puts all the Items into their own struct(s). This also makes the split between authtok/authtok_item easier to understand.
author Paul Fisher <paul@pfish.zone>
date Sun, 06 Jul 2025 19:10:26 -0400
parents 56b559b7ecea
children
comparison
equal deleted inserted replaced
145:8f964b701652 146:1bc52025156b
8 8
9 mod answer; 9 mod answer;
10 mod conversation; 10 mod conversation;
11 mod environ; 11 mod environ;
12 mod handle; 12 mod handle;
13 mod items;
13 mod memory; 14 mod memory;
14 mod module; 15 mod module;
15 mod question; 16 mod question;
16 17
17 #[doc(inline)] 18 #[doc(inline)]
18 pub use handle::{LibPamHandle, LibPamTransaction}; 19 pub use handle::{LibPamHandle, LibPamTransaction, TransactionBuilder};