Files
nym/common/crypto/src/lib.rs
T
2020-01-10 13:49:00 +00:00

10 lines
300 B
Rust

pub mod encryption;
pub mod identity;
// TODO: this trait will need to be moved elsewhere, probably to some 'persistence' crate
// but since it will need to be used by all identities, it's not really appropriate if it lived in nym-client
pub trait PemStorable {
fn pem_type(&self) -> String;
}