mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-16 11:22:56 +00:00
## Proposed Changes Split out several crates which now exist in separate repos under `sigp`. - [`ssz` and `ssz_derive`](https://github.com/sigp/ethereum_ssz) - [`tree_hash` and `tree_hash_derive`](https://github.com/sigp/tree_hash) - [`ethereum_hashing`](https://github.com/sigp/ethereum_hashing) - [`ethereum_serde_utils`](https://github.com/sigp/ethereum_serde_utils) - [`ssz_types`](https://github.com/sigp/ssz_types) For the published crates see: https://crates.io/teams/github:sigp:crates-io?sort=recent-updates. ## Additional Info - [x] Need to work out how to handle versioning. I was hoping to do 1.0 versions of several crates, but if they depend on `ethereum-types 0.x` that is not going to work. EDIT: decided to go with 0.5.x versions. - [x] Need to port several changes from `tree-states`, `capella`, `eip4844` branches to the external repos.
131 lines
3.7 KiB
Rust
131 lines
3.7 KiB
Rust
use crate::generic_public_key_bytes::GenericPublicKeyBytes;
|
|
use crate::Error;
|
|
use serde::de::{Deserialize, Deserializer};
|
|
use serde::ser::{Serialize, Serializer};
|
|
use serde_utils::hex::encode as hex_encode;
|
|
use ssz::{Decode, Encode};
|
|
use std::fmt;
|
|
use std::hash::{Hash, Hasher};
|
|
use tree_hash::TreeHash;
|
|
|
|
/// The byte-length of a BLS public key when serialized in compressed form.
|
|
pub const PUBLIC_KEY_BYTES_LEN: usize = 48;
|
|
|
|
/// Represents the public key at infinity.
|
|
pub const INFINITY_PUBLIC_KEY: [u8; PUBLIC_KEY_BYTES_LEN] = [
|
|
0xc0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
];
|
|
|
|
/// Implemented on some struct from a BLS library so it may be used as the `point` in a
|
|
/// `GenericPublicKey`.
|
|
pub trait TPublicKey: Sized + Clone {
|
|
/// Serialize `self` as compressed bytes.
|
|
fn serialize(&self) -> [u8; PUBLIC_KEY_BYTES_LEN];
|
|
|
|
/// Deserialize `self` from compressed bytes.
|
|
fn deserialize(bytes: &[u8]) -> Result<Self, Error>;
|
|
}
|
|
|
|
/// A BLS public key that is generic across some BLS point (`Pub`).
|
|
///
|
|
/// Provides generic functionality whilst deferring all serious cryptographic operations to `Pub`.
|
|
#[derive(Clone)]
|
|
pub struct GenericPublicKey<Pub> {
|
|
/// The underlying point which performs *actual* cryptographic operations.
|
|
point: Pub,
|
|
}
|
|
|
|
impl<Pub> GenericPublicKey<Pub>
|
|
where
|
|
Pub: TPublicKey,
|
|
{
|
|
/// Instantiates `Self` from a `point`.
|
|
pub(crate) fn from_point(point: Pub) -> Self {
|
|
Self { point }
|
|
}
|
|
|
|
/// Returns a reference to the underlying BLS point.
|
|
pub(crate) fn point(&self) -> &Pub {
|
|
&self.point
|
|
}
|
|
|
|
/// Returns `self.serialize()` as a `0x`-prefixed hex string.
|
|
pub fn as_hex_string(&self) -> String {
|
|
format!("{:?}", self)
|
|
}
|
|
|
|
/// Returns `self` in the compressed `PublicKeyBytes` representation.
|
|
pub fn compress(&self) -> GenericPublicKeyBytes<Pub> {
|
|
GenericPublicKeyBytes::from(self)
|
|
}
|
|
|
|
/// Serialize `self` as compressed bytes.
|
|
pub fn serialize(&self) -> [u8; PUBLIC_KEY_BYTES_LEN] {
|
|
self.point.serialize()
|
|
}
|
|
|
|
/// Deserialize `self` from compressed bytes.
|
|
pub fn deserialize(bytes: &[u8]) -> Result<Self, Error> {
|
|
if bytes == &INFINITY_PUBLIC_KEY[..] {
|
|
Err(Error::InvalidInfinityPublicKey)
|
|
} else {
|
|
Ok(Self {
|
|
point: Pub::deserialize(bytes)?,
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<Pub: TPublicKey> Eq for GenericPublicKey<Pub> {}
|
|
|
|
impl<Pub: TPublicKey> PartialEq for GenericPublicKey<Pub> {
|
|
fn eq(&self, other: &Self) -> bool {
|
|
self.serialize()[..] == other.serialize()[..]
|
|
}
|
|
}
|
|
|
|
/// Hashes the `self.serialize()` bytes.
|
|
impl<Pub: TPublicKey> Hash for GenericPublicKey<Pub> {
|
|
fn hash<H: Hasher>(&self, state: &mut H) {
|
|
self.serialize()[..].hash(state);
|
|
}
|
|
}
|
|
|
|
impl<Pub: TPublicKey> Encode for GenericPublicKey<Pub> {
|
|
impl_ssz_encode!(PUBLIC_KEY_BYTES_LEN);
|
|
}
|
|
|
|
impl<Pub: TPublicKey> Decode for GenericPublicKey<Pub> {
|
|
impl_ssz_decode!(PUBLIC_KEY_BYTES_LEN);
|
|
}
|
|
|
|
impl<Pub: TPublicKey> TreeHash for GenericPublicKey<Pub> {
|
|
impl_tree_hash!(PUBLIC_KEY_BYTES_LEN);
|
|
}
|
|
|
|
impl<Pub: TPublicKey> fmt::Display for GenericPublicKey<Pub> {
|
|
impl_display!();
|
|
}
|
|
|
|
impl<Pub: TPublicKey> std::str::FromStr for GenericPublicKey<Pub> {
|
|
impl_from_str!();
|
|
}
|
|
|
|
impl<Pub: TPublicKey> Serialize for GenericPublicKey<Pub> {
|
|
impl_serde_serialize!();
|
|
}
|
|
|
|
impl<'de, Pub: TPublicKey> Deserialize<'de> for GenericPublicKey<Pub> {
|
|
impl_serde_deserialize!();
|
|
}
|
|
|
|
impl<Pub: TPublicKey> fmt::Debug for GenericPublicKey<Pub> {
|
|
impl_debug!();
|
|
}
|
|
|
|
#[cfg(feature = "arbitrary")]
|
|
impl<Pub: TPublicKey + 'static> arbitrary::Arbitrary<'_> for GenericPublicKey<Pub> {
|
|
impl_arbitrary!(PUBLIC_KEY_BYTES_LEN);
|
|
}
|