pqbip39 0.2.0

A no_std compatible implementation of the BIP39 mnemonic code standard.
Documentation
1
2
3
4
5
6
7
8
9
10
#![cfg_attr(not(feature = "std"), no_std)]

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

pub mod errors;
pub mod mnemonic;
pub mod pbkdf2;
pub mod rng;
pub mod utils;