mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-23 06:44:35 +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>
16 lines
418 B
Rust
16 lines
418 B
Rust
//! Provides a JSON keystore for a BLS keypair, as specified by
|
|
//! [EIP-2335](https://eips.ethereum.org/EIPS/eip-2335).
|
|
|
|
mod derived_key;
|
|
mod keystore;
|
|
|
|
pub mod json_keystore;
|
|
|
|
pub use bls::SecretHash;
|
|
pub use eth2_key_derivation::PlainText;
|
|
pub use keystore::{
|
|
decrypt, default_kdf, encrypt, keypair_from_secret, Error, Keystore, KeystoreBuilder, DKLEN,
|
|
HASH_SIZE, IV_SIZE, SALT_SIZE,
|
|
};
|
|
pub use uuid::Uuid;
|