18340d1fb6
## Issue Addressed NA ## Proposed Changes This is a wholesale rip-off of #2708, see that PR for more of a description. I've made this PR since @realbigsean is offline and I can't merge his PR due to Github's frustrating `target-branch-check` bug. I also changed the branch to `unstable`, since I'm trying to minimize the diff between `merge-f2f`/`unstable`. I'll just rebase `merge-f2f` onto `unstable` after this PR merges. When running `make lint` I noticed the following warning: ``` warning: patch for `fixed-hash` uses the features mechanism. default-features and features will not take effect because the patch dependency does not support this mechanism ``` So, I removed the `features` section from the patch. ## Additional Info NA Co-authored-by: realbigsean <seananderson33@gmail.com>
131 lines
3.7 KiB
Rust
131 lines
3.7 KiB
Rust
use crate::generic_public_key_bytes::GenericPublicKeyBytes;
|
|
use crate::Error;
|
|
use eth2_serde_utils::hex::encode as hex_encode;
|
|
use serde::de::{Deserialize, Deserializer};
|
|
use serde::ser::{Serialize, Serializer};
|
|
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);
|
|
}
|