Crate ts_crypto

Crate ts_crypto 

Source
Expand description

Cryptography abstraction for my projects.

Re-exports§

pub use any::SigningKey;
pub use any::VerifyingKey;
pub use edwards::EdwardsSigningKey;
pub use edwards::EdwardsVerifyingKey;
pub use elliptic::EllipticSigningKey;
pub use elliptic::EllipticVerifyingKey;
pub use rsa::RsaSigningKey;
pub use rsa::RsaVerifyingKey;

Modules§

any
Any supported cryptographic key and associated methods.
edwards
Edwards curve keys
elliptic
Elliptic curve keys
rsa
RSA keys

Structs§

Sha256
SHA-256 hasher.
Sha384
SHA-384 hasher.
Sha512
SHA-512 hasher.

Traits§

Digest
Wrapper trait over common traits required for digest algorithms.