sealable 0.0.1

Pluggable password-to-sealed-string encryption for secrets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(Debug, thiserror::Error)]
pub enum Error {
    #[error("unsupported version {0}")]
    UnsupportedVersion(u8),

    #[error("invalid payload format: {0}")]
    InvalidFormat(String),

    #[error("cryptographic error: {0}")]
    Crypto(String),

    #[error("encoding error: {0}")]
    Encoding(String),
}