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
199
200
201
202
use crate::{export::Principal, Identity, Signature};
#[cfg(feature = "pem")]
use crate::identity::error::PemError;
use k256::{
ecdsa::{self, signature::Signer, SigningKey, VerifyingKey},
pkcs8::{Document, EncodePublicKey},
SecretKey,
};
#[cfg(feature = "pem")]
use std::{fs::File, io, path::Path};
#[derive(Clone, Debug)]
pub struct Secp256k1Identity {
private_key: SigningKey,
_public_key: VerifyingKey,
der_encoded_public_key: Document,
}
impl Secp256k1Identity {
#[cfg(feature = "pem")]
pub fn from_pem_file<P: AsRef<Path>>(file_path: P) -> Result<Self, PemError> {
Self::from_pem(File::open(file_path)?)
}
#[cfg(feature = "pem")]
pub fn from_pem<R: io::Read>(pem_reader: R) -> Result<Self, PemError> {
use sec1::{pem::PemLabel, EcPrivateKey};
const EC_PARAMETERS: &str = "EC PARAMETERS";
const SECP256K1: &[u8] = b"\x06\x05\x2b\x81\x04\x00\x0a";
let contents = pem_reader.bytes().collect::<Result<Vec<u8>, io::Error>>()?;
for pem in pem::parse_many(contents)? {
if pem.tag == EC_PARAMETERS && pem.contents != SECP256K1 {
return Err(PemError::UnsupportedKeyCurve(pem.contents));
}
if pem.tag != EcPrivateKey::PEM_LABEL {
continue;
}
let private_key =
SecretKey::from_sec1_der(&pem.contents).map_err(|_| pkcs8::Error::KeyMalformed)?;
return Ok(Self::from_private_key(private_key));
}
Err(pem::PemError::MissingData.into())
}
pub fn from_private_key(private_key: SecretKey) -> Self {
let public_key = private_key.public_key();
let der_encoded_public_key = public_key
.to_public_key_der()
.expect("Cannot DER encode secp256k1 public key.");
Self {
private_key: private_key.into(),
_public_key: public_key.into(),
der_encoded_public_key,
}
}
}
impl Identity for Secp256k1Identity {
fn sender(&self) -> Result<Principal, String> {
Ok(Principal::self_authenticating(
self.der_encoded_public_key.as_ref(),
))
}
fn sign(&self, msg: &[u8]) -> Result<Signature, String> {
let ecdsa_sig: ecdsa::Signature = self
.private_key
.try_sign(msg)
.map_err(|err| format!("Cannot create secp256k1 signature: {}", err))?;
let r = ecdsa_sig.r().as_ref().to_bytes();
let s = ecdsa_sig.s().as_ref().to_bytes();
let mut bytes = [0u8; 64];
if r.len() > 32 || s.len() > 32 {
return Err("Cannot create secp256k1 signature: malformed signature.".to_string());
}
bytes[(32 - r.len())..32].clone_from_slice(&r);
bytes[32 + (32 - s.len())..].clone_from_slice(&s);
let signature = Some(bytes.to_vec());
let public_key = Some(self.der_encoded_public_key.as_ref().to_vec());
Ok(Signature {
public_key,
signature,
})
}
}
#[cfg(feature = "pem")]
#[cfg(test)]
mod test {
use super::*;
use k256::{
ecdsa::{signature::Verifier, Signature},
elliptic_curve::PrimeField,
FieldBytes, Scalar,
};
const WRONG_CURVE_IDENTITY_FILE: &str = "-----BEGIN EC PARAMETERS-----
BgUrgQQAHg==
-----END EC PARAMETERS-----
-----BEGIN EC PRIVATE KEY-----
MFACAQEEFI9cF6zXxMKhtjn1gBD7AHPbzehfoAcGBSuBBAAeoSwDKgAEh5NXszgR
oGSXVWaGxcQhQWlFG4pbnOG+93xXzfRD7eKWOdmun2bKxQ==
-----END EC PRIVATE KEY-----
";
const WRONG_CURVE_IDENTITY_FILE_NO_PARAMS: &str = "-----BEGIN EC PRIVATE KEY-----
MFACAQEEFI9cF6zXxMKhtjn1gBD7AHPbzehfoAcGBSuBBAAeoSwDKgAEh5NXszgR
oGSXVWaGxcQhQWlFG4pbnOG+93xXzfRD7eKWOdmun2bKxQ==
-----END EC PRIVATE KEY-----
";
const IDENTITY_FILE: &str = "-----BEGIN EC PARAMETERS-----
BgUrgQQACg==
-----END EC PARAMETERS-----
-----BEGIN EC PRIVATE KEY-----
MHQCAQEEIAgy7nZEcVHkQ4Z1Kdqby8SwyAiyKDQmtbEHTIM+WNeBoAcGBSuBBAAK
oUQDQgAEgO87rJ1ozzdMvJyZQ+GABDqUxGLvgnAnTlcInV3NuhuPv4O3VGzMGzeB
N3d26cRxD99TPtm8uo2OuzKhSiq6EQ==
-----END EC PRIVATE KEY-----
";
const DER_ENCODED_PUBLIC_KEY: &str = "3056301006072a8648ce3d020106052b8104000a0342000480ef3bac9d68cf374cbc9c9943e180043a94c462ef8270274e57089d5dcdba1b8fbf83b7546ccc1b3781377776e9c4710fdf533ed9bcba8d8ebb32a14a2aba11";
#[test]
#[should_panic(expected = "UnsupportedKeyCurve")]
fn test_secp256k1_reject_wrong_curve() {
Secp256k1Identity::from_pem(WRONG_CURVE_IDENTITY_FILE.as_bytes()).unwrap();
}
#[test]
#[should_panic(expected = "KeyMalformed")]
fn test_secp256k1_reject_wrong_curve_no_id() {
Secp256k1Identity::from_pem(WRONG_CURVE_IDENTITY_FILE_NO_PARAMS.as_bytes()).unwrap();
}
#[test]
fn test_secp256k1_public_key() {
let identity = Secp256k1Identity::from_pem(IDENTITY_FILE.as_bytes())
.expect("Cannot create secp256k1 identity from PEM file.");
assert!(DER_ENCODED_PUBLIC_KEY == hex::encode(identity.der_encoded_public_key));
}
#[test]
fn test_secp256k1_signature() {
let identity = Secp256k1Identity::from_pem(IDENTITY_FILE.as_bytes())
.expect("Cannot create secp256k1 identity from PEM file.");
let message = b"Hello World";
let signature = identity
.sign(message)
.expect("Cannot create secp256k1 signature.")
.signature
.expect("Cannot find secp256k1 signature bytes.");
let r: Scalar = Option::from(Scalar::from_repr(*FieldBytes::from_slice(
&signature[0..32],
)))
.expect("Cannot extract r component from secp256k1 signature bytes.");
let s: Scalar = Option::from(Scalar::from_repr(*FieldBytes::from_slice(&signature[32..])))
.expect("Cannot extract s component from secp256k1 signature bytes.");
let ecdsa_sig = Signature::from_scalars(r, s)
.expect("Cannot create secp256k1 signature from r and s components.");
identity
._public_key
.verify(message, &ecdsa_sig)
.expect("Cannot verify secp256k1 signature.");
}
}