use super::{
backend::k1,
signature_format::decode_signature,
};
use crate::{
Error,
Message,
PublicKey,
SecretKey,
};
use fuel_types::Bytes64;
use core::{
fmt,
ops::Deref,
str,
};
#[derive(Default, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[repr(transparent)]
pub struct Signature(Bytes64);
impl Signature {
pub const LEN: usize = Bytes64::LEN;
pub fn from_bytes(bytes: [u8; Self::LEN]) -> Self {
Self(bytes.into())
}
pub fn from_bytes_ref(bytes: &[u8; Self::LEN]) -> &Self {
#[allow(unsafe_code)]
unsafe {
&*(bytes.as_ptr() as *const Self)
}
}
pub fn remove_recovery_id(&self) -> [u8; Self::LEN] {
let (signature, _recovery_id) = decode_signature(self.0.into());
signature
}
#[deprecated = "Use `Signature::from_bytes` instead"]
pub fn from_bytes_unchecked(bytes: [u8; Self::LEN]) -> Self {
Self::from_bytes(bytes)
}
}
impl Deref for Signature {
type Target = [u8; Signature::LEN];
fn deref(&self) -> &[u8; Signature::LEN] {
self.0.deref()
}
}
impl AsRef<[u8]> for Signature {
fn as_ref(&self) -> &[u8] {
self.0.as_ref()
}
}
impl AsMut<[u8]> for Signature {
fn as_mut(&mut self) -> &mut [u8] {
self.0.as_mut()
}
}
impl fmt::LowerHex for Signature {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.0.fmt(f)
}
}
impl fmt::UpperHex for Signature {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.0.fmt(f)
}
}
impl fmt::Debug for Signature {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(f)
}
}
impl fmt::Display for Signature {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(f)
}
}
impl From<Signature> for [u8; Signature::LEN] {
fn from(salt: Signature) -> [u8; Signature::LEN] {
salt.0.into()
}
}
impl From<Signature> for Bytes64 {
fn from(s: Signature) -> Self {
s.0
}
}
impl str::FromStr for Signature {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
Bytes64::from_str(s)
.map_err(|_| Error::InvalidSignature)
.map(|s| Self::from_bytes(s.into()))
}
}
impl Signature {
pub fn sign(secret: &SecretKey, message: &Message) -> Self {
Self(Bytes64::from(k1::sign(secret, message)))
}
pub fn recover(&self, message: &Message) -> Result<PublicKey, Error> {
k1::recover(*self.0, message)
}
pub fn verify(&self, public_key: &PublicKey, message: &Message) -> Result<(), Error> {
k1::verify(*self.0, **public_key, message)
}
}
#[cfg(test)]
mod tests {
use crate::Signature;
use test_case::test_case;
#[test_case(0x00 => 0x00)]
#[test_case(0x7E => 0x7E)]
#[test_case(0x7F => 0x7F)]
#[test_case(0x80 => 0x00)]
#[test_case(0xFF => 0x7F)]
fn removes_recovery_id(s_byte: u8) -> u8 {
let mut sig_bytes = [0u8; 64];
sig_bytes[32..].fill(s_byte);
let signature = Signature::from_bytes(sig_bytes);
let without_recovery_id = signature.remove_recovery_id();
without_recovery_id[32]
}
}