mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 04:57:00 +01:00
Himmelblau needs to maintain some data about the state of an authentication across the course of pam exchanges. Signed-off-by: David Mulder <dmulder@samba.org> Co-authored-by: David Mulder <dmulder@samba.org>
8 lines
261 B
Rust
8 lines
261 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
/* This is the definition for extra data to be sent along with a pam_prompt
|
|
* request. It will be sent back to the idprovider to continue an auth attempt.
|
|
*/
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
pub struct PamData {}
|