cry 0.1.5

Advance cryptography based on ECC and permutation cryptography.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Define some type about asymmetric and symmetric key.
//!
//! This module define all type of `key` in `libcry`.

mod keypair;
pub use keypair::Keypair;

mod public_key;
pub use public_key::PublicKey;

mod bare_public;
pub use bare_public::BarePublicKey;