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
17
18
/*
use std::collections::HashMap;

type local_key_id = String;
type local_keyring_checksum = String;

/// # KeyRingChecksum
/// 
/// Checks for changes in the key ring.
pub struct KeyRingChecksum {
    pub checksum: String,
}


pub struct KeyRing {
    pub keys: HashMap<local_key_id, 
}
*/