1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#![feature(test)]
#![no_std]

#[cfg(test)]
#[macro_use]
extern crate std;

#[cfg(test)]
extern crate test;

mod bind;

pub mod chacha20poly1305;
pub mod x25519;