use eth_valkyoth_hash::{Keccak256, hash_one};
use eth_valkyoth_primitives::{Address, B256};
use eth_valkyoth_protocol::SignatureYParity;
use k256::ecdsa::{
RecoveryId as Secp256k1RecoveryId, Signature as Secp256k1Signature,
VerifyingKey as Secp256k1VerifyingKey,
};
use crate::VerifyError;
pub const COMPACT_SIGNATURE_BYTES: usize = 64;
pub const ETHEREUM_SIGNATURE_BYTES: usize = 65;
pub const SIGNING_DIGEST_BYTES: usize = 32;
pub const ETHEREUM_PUBLIC_KEY_BYTES: usize = 64;
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub struct EthereumSignature {
r: [u8; 32],
s: [u8; 32],
y_parity: SignatureYParity,
}
impl EthereumSignature {
#[must_use]
pub const fn from_parts(r: [u8; 32], s: [u8; 32], y_parity: SignatureYParity) -> Self {
Self { r, s, y_parity }
}
pub fn try_from_parts_with_y_parity(
r: [u8; 32],
s: [u8; 32],
y_parity: u8,
) -> Result<Self, VerifyError> {
let y_parity = SignatureYParity::try_new(u64::from(y_parity))
.map_err(|_| VerifyError::InvalidSignature)?;
Ok(Self::from_parts(r, s, y_parity))
}
pub fn try_from_bytes(bytes: [u8; ETHEREUM_SIGNATURE_BYTES]) -> Result<Self, VerifyError> {
let (compact, y_parity) = bytes.split_at(COMPACT_SIGNATURE_BYTES);
let (r, s) = compact.split_at(SIGNING_DIGEST_BYTES);
let r = <[u8; 32]>::try_from(r).map_err(|_| VerifyError::InvalidSignature)?;
let s = <[u8; 32]>::try_from(s).map_err(|_| VerifyError::InvalidSignature)?;
let y_parity = y_parity
.first()
.copied()
.ok_or(VerifyError::InvalidSignature)?;
Self::try_from_parts_with_y_parity(r, s, y_parity)
}
#[must_use]
pub const fn r(self) -> [u8; 32] {
self.r
}
#[must_use]
pub const fn s(self) -> [u8; 32] {
self.s
}
#[must_use]
pub const fn y_parity(self) -> SignatureYParity {
self.y_parity
}
fn secp256k1_signature(self) -> Result<Secp256k1Signature, VerifyError> {
let signature = Secp256k1Signature::from_scalars(self.r, self.s)
.map_err(|_| VerifyError::InvalidSignature)?;
if signature.normalize_s().is_some() {
return Err(VerifyError::InvalidSignature);
}
Ok(signature)
}
fn secp256k1_recovery_id(self) -> Result<Secp256k1RecoveryId, VerifyError> {
Secp256k1RecoveryId::try_from(self.y_parity.get())
.map_err(|_| VerifyError::InvalidSignature)
}
}
pub fn recover_sender_from_digest<H>(
signing_digest: B256,
signature: EthereumSignature,
hasher: H,
) -> Result<Address, VerifyError>
where
H: Keccak256,
{
let secp256k1_signature = signature.secp256k1_signature()?;
let recovery_id = signature.secp256k1_recovery_id()?;
let digest_bytes = <[u8; SIGNING_DIGEST_BYTES]>::from(signing_digest);
let verifying_key = Secp256k1VerifyingKey::recover_from_prehash(
&digest_bytes,
&secp256k1_signature,
recovery_id,
)
.map_err(|_| VerifyError::InvalidSignature)?;
address_from_verifying_key(verifying_key, hasher)
}
fn address_from_verifying_key<H>(
verifying_key: Secp256k1VerifyingKey,
hasher: H,
) -> Result<Address, VerifyError>
where
H: Keccak256,
{
let encoded = verifying_key.to_encoded_point(false);
let public_key = encoded
.as_bytes()
.get(1..)
.ok_or(VerifyError::InvalidSignature)?;
if public_key.len() != ETHEREUM_PUBLIC_KEY_BYTES {
return Err(VerifyError::InvalidSignature);
}
let digest = hash_one(hasher, public_key);
let digest_bytes = <[u8; SIGNING_DIGEST_BYTES]>::from(digest);
let address = digest_bytes
.get(12..)
.and_then(|bytes| <[u8; 20]>::try_from(bytes).ok())
.ok_or(VerifyError::InvalidSignature)?;
Ok(Address::from_bytes(address))
}
#[cfg(test)]
mod tests {
use super::*;
use k256::ecdsa::SigningKey;
use sha3::Digest;
struct AddressFromPublicKeyHasher {
digest: [u8; 32],
}
impl AddressFromPublicKeyHasher {
const fn new() -> Self {
Self { digest: [0_u8; 32] }
}
}
impl Keccak256 for AddressFromPublicKeyHasher {
fn update(&mut self, input: &[u8]) {
let Some(source) = input.get(input.len().saturating_sub(20)..) else {
return;
};
let Some(target) = self.digest.get_mut(12..) else {
return;
};
target.copy_from_slice(source);
}
fn finalize(self) -> B256 {
B256::from_bytes(self.digest)
}
}
struct RealKeccak {
inner: sha3::Keccak256,
}
impl RealKeccak {
fn new() -> Self {
Self {
inner: sha3::Keccak256::new(),
}
}
}
impl Keccak256 for RealKeccak {
fn update(&mut self, input: &[u8]) {
self.inner.update(input);
}
fn finalize(self) -> B256 {
let digest = self.inner.finalize();
let mut bytes = [0_u8; SIGNING_DIGEST_BYTES];
bytes.copy_from_slice(&digest);
B256::from_bytes(bytes)
}
}
fn signing_digest() -> B256 {
B256::from_bytes([
0x44, 0x17, 0x9d, 0x9b, 0x5e, 0x7a, 0x31, 0x65, 0xd6, 0x78, 0x1a, 0x10, 0x82, 0x4f,
0x9f, 0x35, 0x4d, 0xa4, 0x50, 0x21, 0xf8, 0x70, 0x21, 0x2f, 0x52, 0xee, 0x01, 0x22,
0xae, 0x71, 0x42, 0x60,
])
}
fn signing_key() -> Result<SigningKey, VerifyError> {
SigningKey::from_bytes(
(&[
0x4c, 0x08, 0x83, 0xa6, 0x91, 0x02, 0x93, 0x7d, 0x62, 0x31, 0x47, 0x1b, 0x5d, 0xbb,
0x62, 0x04, 0xfe, 0x51, 0x29, 0x61, 0x70, 0x82, 0x79, 0x2a, 0xe4, 0x68, 0xd0, 0x1a,
0x3f, 0x36, 0x23, 0x18,
])
.into(),
)
.map_err(|_| VerifyError::InvalidSignature)
}
fn signature_fixture() -> Result<EthereumSignature, VerifyError> {
let key = signing_key()?;
let (signature, recovery_id) = key
.sign_prehash_recoverable(&<[u8; SIGNING_DIGEST_BYTES]>::from(signing_digest()))
.map_err(|_| VerifyError::InvalidSignature)?;
let bytes = signature.to_bytes();
let r = bytes
.get(..SIGNING_DIGEST_BYTES)
.and_then(|value| <[u8; 32]>::try_from(value).ok())
.ok_or(VerifyError::InvalidSignature)?;
let s = bytes
.get(SIGNING_DIGEST_BYTES..)
.and_then(|value| <[u8; 32]>::try_from(value).ok())
.ok_or(VerifyError::InvalidSignature)?;
EthereumSignature::try_from_parts_with_y_parity(r, s, recovery_id.to_byte())
}
fn expected_address() -> Result<Address, VerifyError> {
let key = signing_key()?;
let encoded = key.verifying_key().to_encoded_point(false);
let source = encoded
.as_bytes()
.get(1..)
.and_then(|bytes| bytes.get(bytes.len().saturating_sub(20)..))
.and_then(|bytes| <[u8; 20]>::try_from(bytes).ok())
.ok_or(VerifyError::InvalidSignature)?;
Ok(Address::from_bytes(source))
}
#[test]
fn recovers_known_ethereum_vector() {
let message = [
0xe9, 0x80, 0x85, 0x04, 0xe3, 0xb2, 0x92, 0x00, 0x83, 0x1e, 0x84, 0x80, 0x94, 0xf0,
0x10, 0x9f, 0xc8, 0xdf, 0x28, 0x30, 0x27, 0xb6, 0x28, 0x5c, 0xc8, 0x89, 0xf5, 0xaa,
0x62, 0x4e, 0xac, 0x1f, 0x55, 0x84, 0x3b, 0x9a, 0xca, 0x00, 0x80, 0x01, 0x80, 0x80,
];
let signing_digest = eth_valkyoth_hash::hash_one(RealKeccak::new(), &message);
let signature = EthereumSignature::from_parts(
[
0xc9, 0xcf, 0x86, 0x33, 0x3b, 0xcb, 0x06, 0x5d, 0x14, 0x00, 0x32, 0xec, 0xaa, 0xb5,
0xd9, 0x28, 0x1b, 0xde, 0x80, 0xf2, 0x1b, 0x96, 0x87, 0xb3, 0xe9, 0x41, 0x61, 0xde,
0x42, 0xd5, 0x18, 0x95,
],
[
0x72, 0x7a, 0x10, 0x8a, 0x0b, 0x8d, 0x10, 0x14, 0x65, 0x41, 0x40, 0x33, 0xc3, 0xf7,
0x05, 0xa9, 0xc7, 0xb8, 0x26, 0xe5, 0x96, 0x76, 0x60, 0x46, 0xee, 0x11, 0x83, 0xdb,
0xc8, 0xae, 0xaa, 0x68,
],
SignatureYParity::Even,
);
let expected = Address::from_bytes([
0x2c, 0x75, 0x36, 0xe3, 0x60, 0x5d, 0x9c, 0x16, 0xa7, 0xa3, 0xd7, 0xb1, 0x89, 0x8e,
0x52, 0x93, 0x96, 0xa6, 0x5c, 0x23,
]);
assert_eq!(
recover_sender_from_digest(signing_digest, signature, RealKeccak::new()),
Ok(expected)
);
}
#[test]
fn recovers_sender_from_digest_through_hash_boundary() {
let signature = signature_fixture();
assert!(signature.is_ok());
let expected = expected_address();
assert!(expected.is_ok());
if let (Ok(signature), Ok(expected)) = (signature, expected) {
assert_eq!(
recover_sender_from_digest(
signing_digest(),
signature,
AddressFromPublicKeyHasher::new()
),
Ok(expected)
);
}
}
#[test]
fn rejects_non_ethereum_recovery_id() {
assert_eq!(
EthereumSignature::try_from_parts_with_y_parity([1_u8; 32], [1_u8; 32], 2),
Err(VerifyError::InvalidSignature)
);
}
#[test]
fn rejects_zero_scalars() {
let signature =
EthereumSignature::from_parts([0_u8; 32], [1_u8; 32], SignatureYParity::Even);
assert_eq!(
recover_sender_from_digest(
signing_digest(),
signature,
AddressFromPublicKeyHasher::new()
),
Err(VerifyError::InvalidSignature)
);
}
#[test]
fn rejects_high_s_signatures() {
let signature = EthereumSignature::from_parts(
[
0x20, 0xc0, 0x1a, 0x91, 0x0e, 0xbb, 0x26, 0x10, 0xaf, 0x2d, 0x76, 0x3f, 0xa0, 0x9b,
0x3b, 0x30, 0x92, 0x3c, 0x8e, 0x40, 0x8b, 0x11, 0xdf, 0x2c, 0x61, 0xad, 0x76, 0xd9,
0x70, 0xa2, 0xf1, 0xbc,
],
[
0xee, 0x2f, 0x11, 0xef, 0x8c, 0xb0, 0x0a, 0x49, 0x61, 0x7d, 0x13, 0x57, 0xf4, 0xd5,
0x56, 0x41, 0x09, 0x0a, 0x48, 0xf2, 0x01, 0xe9, 0xb9, 0x59, 0xc4, 0x8f, 0x6f, 0x6b,
0xec, 0x6f, 0x93, 0x8f,
],
SignatureYParity::Even,
);
assert_eq!(
recover_sender_from_digest(
signing_digest(),
signature,
AddressFromPublicKeyHasher::new()
),
Err(VerifyError::InvalidSignature)
);
}
#[test]
fn parses_signature_bytes() {
let signature = EthereumSignature::try_from_bytes([1_u8; ETHEREUM_SIGNATURE_BYTES]);
assert!(signature.is_ok());
}
}