mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-14 18:32:42 +00:00
## Issue Addressed Closes #1504 Closes #1505 Replaces #1703 Closes #1707 ## Proposed Changes * Update BLST and Milagro to versions compatible with BLSv4 spec * Update Lighthouse to spec v1.0.0-rc.0, and update EF test vectors * Use the v1.0.0 constants for `MainnetEthSpec`. * Rename `InteropEthSpec` -> `V012LegacyEthSpec` * Change all constants to suit the mainnet `v0.12.3` specification (i.e., Medalla). * Deprecate the `--spec` flag for the `lighthouse` binary * This value is now obtained from the `config_name` field of the `YamlConfig`. * Built in testnet YAML files have been updated. * Ignore the `--spec` value, if supplied, log a warning that it will be deprecated * `lcli` still has the spec flag, that's fine because it's dev tooling. * Remove the `E: EthSpec` from `YamlConfig` * This means we need to deser the genesis `BeaconState` on-demand, but this is fine. * Swap the old "minimal", "mainnet" strings over to the new `EthSpecId` enum. * Always require a `CONFIG_NAME` field in `YamlConfig` (it used to have a default). ## Additional Info Lots of breaking changes, do not merge! ~~We will likely need a Lighthouse v0.4.0 branch, and possibly a long-term v0.3.0 branch to keep Medalla alive~~. Co-authored-by: Kirk Baird <baird.k@outlook.com> Co-authored-by: Paul Hauner <paul@paulhauner.com>
125 lines
3.5 KiB
Rust
125 lines
3.5 KiB
Rust
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 aggregate 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 to_hex_string(&self) -> String {
|
|
format!("{:?}", 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);
|
|
}
|