sspi 0.20.1

A Rust implementation of the Security Support Provider Interface (SSPI) API
Documentation
1
2
3
4
5
6
7
8
9
mod authenticate;
mod challenge;
mod negotiate;
#[cfg(test)]
mod test;

pub(crate) use self::authenticate::write_authenticate;
pub(crate) use self::challenge::read_challenge;
pub(crate) use self::negotiate::write_negotiate;