snow 0.0.1-preview.2

A pure-rust implementation of the Noise Protocol Framework
Documentation
1
2
3
4
5
6
7
8
9
10
/// All error types produced by a Noise operation.
#[derive(Debug)]
pub enum NoiseError {
    InitError(&'static str),
    PrereqError(String),
    InputError(&'static str),
    StateError(&'static str),
    DecryptError
}