smb2 0.11.0

Pure-Rust SMB2/3 client library with pipelined I/O
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Authentication mechanisms for SMB2.
//!
//! Supports NTLM authentication (MS-NLMP) and Kerberos authentication
//! (RFC 4120, MS-KILE).
//!
//! Most users don't need this module directly -- [`SmbClient`](crate::SmbClient)
//! handles authentication during [`connect`](crate::connect).

pub(crate) mod der;
pub mod kerberos;
pub mod ntlm;
pub mod spnego;

pub use kerberos::{KerberosAuthenticator, KerberosCredentials};
pub use ntlm::{NtlmAuthenticator, NtlmCredentials};