libslug 0.9.1

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
//! # EsphandCertificate
//! 
//! An EsphandCertificate is a decentralized, secure, certificate scheme that uses the decentralized web to establish trust.

pub trait EsphandCertificate {

}

pub trait EsphandCertificateDigest {

}

pub trait CertificatePublicKey {
    fn public_key(&self) -> String;
    fn public_key_as_bytes(&self) -> Vec<u8>;
}