crypto_api 0.2.2

Defines a general purpose API for various cryptographic primitives
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! This crate defines a general purpose API for various cryptographic primitives. It's goal is to
//! provide an abstraction layer that allows you to switch your cryptographic backend easily.

/// Cipher traits
pub mod cipher;
/// Hash traits
pub mod hash;
/// KDF traits
pub mod kdf;
/// MAC traits
pub mod mac;
/// PBKDF traits
pub mod pbkdf;
/// Random number generator traits
pub mod rng;
/// Asymmetric signature traits
pub mod signer;