1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
use crate::Bits256;
use fuel_tx::{crypto::Hasher, Bytes64};
use fuel_types::Address;
use fuel_vm::crypto::secp256k1_sign_compact_recover;
use std::{convert::TryFrom, fmt, str::FromStr};
use thiserror::Error;
#[derive(Debug, Error)]
pub enum SignatureError {
#[error("invalid signature length, got {0}, expected 64")]
InvalidLength(usize),
#[error(transparent)]
DecodingError(#[from] hex::FromHexError),
#[error("Signature verification failed. Expected {0}, got {1}")]
VerificationError(Address, Address),
#[error("Public key recovery error")]
RecoveryError,
}
#[derive(Clone, Debug, PartialEq)]
pub enum RecoveryMessage {
Data(Vec<u8>),
Hash(Bits256),
}
#[derive(Debug, Clone, PartialEq, Eq, Copy)]
pub struct Signature {
pub compact: Bytes64,
}
impl fmt::Display for Signature {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", hex::encode(self.compact))
}
}
impl Signature {
pub fn verify<M, A>(&self, message: M, address: A) -> Result<(), SignatureError>
where
M: Into<RecoveryMessage>,
A: Into<Address>,
{
let address = address.into();
let recovered = self.recover(message)?;
if recovered != address {
return Err(SignatureError::VerificationError(address, recovered));
}
Ok(())
}
pub fn recover<M>(&self, message: M) -> Result<Address, SignatureError>
where
M: Into<RecoveryMessage>,
{
let message = message.into();
let message_hash = match message {
RecoveryMessage::Data(ref message) => Hasher::hash(&message[..]),
RecoveryMessage::Hash(hash) => hash.into(),
};
let recovered =
secp256k1_sign_compact_recover(self.compact.as_ref(), message_hash.as_ref()).unwrap();
let hashed = Hasher::hash(recovered);
Ok(Address::new(*hashed))
}
}
impl<'a> TryFrom<&'a [u8]> for Signature {
type Error = SignatureError;
fn try_from(bytes: &'a [u8]) -> Result<Self, Self::Error> {
if bytes.len() != 64 {
return Err(SignatureError::InvalidLength(bytes.len()));
}
Ok(Signature {
compact: unsafe { Bytes64::from_slice_unchecked(bytes) },
})
}
}
impl FromStr for Signature {
type Err = SignatureError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
let s = s.strip_prefix("0x").unwrap_or(s);
let bytes = hex::decode(s)?;
Signature::try_from(&bytes[..])
}
}
impl From<&[u8]> for RecoveryMessage {
fn from(s: &[u8]) -> Self {
s.to_owned().into()
}
}
impl From<Vec<u8>> for RecoveryMessage {
fn from(s: Vec<u8>) -> Self {
RecoveryMessage::Data(s)
}
}
impl From<&str> for RecoveryMessage {
fn from(s: &str) -> Self {
s.as_bytes().to_owned().into()
}
}
impl From<String> for RecoveryMessage {
fn from(s: String) -> Self {
RecoveryMessage::Data(s.into_bytes())
}
}
impl From<[u8; 32]> for RecoveryMessage {
fn from(hash: [u8; 32]) -> Self {
RecoveryMessage::Hash(hash)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn verify() {
let msg = RecoveryMessage::Data("Some data".into());
let address =
Address::from_str("0x014587212741268ad0b1bc727efce9711dbde69c484a9db38bd83bb1b3017c05")
.unwrap();
let signature = Signature::from_str(
"64d8b60c08a7ecab307cb11a31a7153ec7e4ff06a8fb78b4fe9c982d44c731efe63303ec5c7686a56445bacdd4ee89f592f1b3e68bded25ea404cd6806205db4"
).expect("could not parse signature");
signature.verify(msg, address).unwrap();
}
#[test]
fn recover_signature() {
let signature = Signature::from_str(
"64d8b60c08a7ecab307cb11a31a7153ec7e4ff06a8fb78b4fe9c982d44c731efe63303ec5c7686a56445bacdd4ee89f592f1b3e68bded25ea404cd6806205db4"
).expect("could not parse signature");
assert_eq!(
signature.recover("Some data").unwrap(),
Address::from_str("0x014587212741268ad0b1bc727efce9711dbde69c484a9db38bd83bb1b3017c05")
.unwrap()
);
}
#[test]
fn signature_from_str() {
let s1 = Signature::from_str(
"0x64d8b60c08a7ecab307cb11a31a7153ec7e4ff06a8fb78b4fe9c982d44c731efe63303ec5c7686a56445bacdd4ee89f592f1b3e68bded25ea404cd6806205db4"
).expect("could not parse 0x-prefixed signature");
let s2 = Signature::from_str(
"64d8b60c08a7ecab307cb11a31a7153ec7e4ff06a8fb78b4fe9c982d44c731efe63303ec5c7686a56445bacdd4ee89f592f1b3e68bded25ea404cd6806205db4"
).expect("could not parse non-prefixed signature");
assert_eq!(s1, s2);
}
}