seqc 0.1.1

Pattern-based encoding library
Documentation
1
2
3
4
5
6
7
8
9
#[derive(Debug)]
pub enum DialectError {
    /// Payload consigned for decryption consists from non-utf8 characters.
    NonUtf8Payload,
    /// Output buffer is too small to fit encrypted/decrypted data.
    BufferExhausted,
    /// During decoding encountered unexpected remaining tail.
    UnexpectedRemainder,
}