smb2 0.8.0

Pure-Rust SMB2/3 client library with pipelined I/O
Documentation
1
2
3
4
5
6
7
8
9
//! Cryptographic operations for SMB2/3: signing, encryption, key derivation, and compression.
//!
//! Most users don't need this module directly -- [`SmbClient`](crate::SmbClient)
//! handles signing and encryption automatically.

pub mod compression;
pub mod encryption;
pub mod kdf;
pub mod signing;