libslug 0.12.0

A Rust Library For Cryptography Intended For Slug20 That Supports X59 Certificate Format and Post-Quantum Cryptography
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*

pub struct X59Cert {
    pub version: u8,
    pub serial_number: u64,
    pub signature_algorithm: String,
    pub issuer: String,
    pub validity: Validity,
    pub subject: String,
    pub subject_public_key_info: SubjectPublicKeyInfo,
    pub issuer_unique_id: Option<Vec<u8>>,
    pub subject_unique_id: Option<Vec<u8>>,
    pub extensions: Option<Vec<Extension>>,
}

    */