c93f9c351b
* Improve bls::SecretKey privacy * Add missed file * Remove more methods from bls::SecretKey * Add as_bytes() to SecretKey, remove as_raw * Remove as_raw * Add back as_raw * Address review comments
42 lines
1.1 KiB
Rust
42 lines
1.1 KiB
Rust
use super::{PublicKey, SecretKey};
|
|
use std::fmt;
|
|
use std::hash::{Hash, Hasher};
|
|
|
|
#[derive(Clone)]
|
|
pub struct Keypair {
|
|
pub sk: SecretKey,
|
|
pub pk: PublicKey,
|
|
}
|
|
|
|
impl Keypair {
|
|
/// Instantiate a Keypair using SecretKey::random().
|
|
pub fn random() -> Self {
|
|
let sk = SecretKey::random();
|
|
let pk = PublicKey::from_secret_key(&sk);
|
|
Keypair { sk, pk }
|
|
}
|
|
|
|
pub fn identifier(&self) -> String {
|
|
self.pk.concatenated_hex_id()
|
|
}
|
|
}
|
|
|
|
#[allow(clippy::derive_hash_xor_eq)]
|
|
impl Hash for Keypair {
|
|
/// Note: this is distinct from consensus serialization, it will produce a different hash.
|
|
///
|
|
/// This method uses the uncompressed bytes, which are much faster to obtain than the
|
|
/// compressed bytes required for consensus serialization.
|
|
///
|
|
/// Use `ssz::Encode` to obtain the bytes required for consensus hashing.
|
|
fn hash<H: Hasher>(&self, state: &mut H) {
|
|
self.pk.as_uncompressed_bytes().hash(state)
|
|
}
|
|
}
|
|
|
|
impl fmt::Display for Keypair {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
write!(f, "{}", self.pk)
|
|
}
|
|
}
|