Files
lighthouse/crypto/eth2_key_derivation/src/lib.rs
Kirk Baird 197adeff0b Update milagro_bls to new release (#1183)
* Update milagro_bls to new release

Signed-off-by: Kirk Baird <baird.k@outlook.com>

* Tidy up fake cryptos

Signed-off-by: Kirk Baird <baird.k@outlook.com>

* move SecretHash to bls and put plaintext back

Signed-off-by: Kirk Baird <baird.k@outlook.com>
2020-06-03 14:56:53 +10:00

12 lines
296 B
Rust

//! Provides path-based hierarchical BLS key derivation, as specified by
//! [EIP-2333](https://eips.ethereum.org/EIPS/eip-2333).
mod derived_key;
mod lamport_secret_key;
mod plain_text;
mod secret_bytes;
pub use bls::SecretHash;
pub use derived_key::DerivedKey;
pub use plain_text::PlainText;