mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-10 04:01:51 +00:00
* 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>
12 lines
296 B
Rust
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;
|