libcrux 0.0.3

The Formally Verified Cryptography Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # libcrux
//!
//! A high-assurance cryptography library.

#![no_std]

#[cfg(feature = "std")]
extern crate std;

#[cfg(not(feature = "std"))]
extern crate alloc;

#[cfg(not(feature = "std"))]
use alloc as std;

pub mod algorithms;
pub mod primitives;
pub mod protocols;