mtorrent-core 0.5.4

Fundamentals for building asynchronous BitTorrent clients
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod cipher;
mod handshake;
mod io;
mod key_exchange;
mod utils;

pub use cipher::{Crypto, Decryptor, Encryptor};
pub use handshake::{inbound_handshake, outbound_handshake};
pub use io::{DecryptingBufReader, DecryptingReader, EncryptingWriter, PrefixedStream};
pub use utils::{MaybeEncrypted, detect_encryption};

#[cfg(test)]
pub(crate) use cipher::crypto_pair;