crylib 0.2.0

a collection of cryptographic functions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! A collection of cryptographic primitives.
//!
//! <div class="warning">
//! WARNING: This code has not been audited. Use it at your own risk.
//! </div>
//#![warn(missing_docs, clippy::cargo)]
#![warn(clippy::cargo)]
#![no_std]

pub mod aead;
pub mod big_int;
pub mod ec;
pub mod finite_field;
pub mod hash;
pub mod hkdf;
pub mod hmac;