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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
|
//! Key manipulation functions for use with public keys.
//!
//! Tor does some interesting and not-standard things with its
//! curve25519 and ed25519 keys, for several reasons.
//!
//! In order to prove ownership of a curve25519 private key, Tor
//! converts it into an ed25519 key, and then uses that ed25519 key to
//! sign its identity key. We implement this conversion with
//! [`convert_curve25519_to_ed25519_public`] and
//! [`convert_curve25519_to_ed25519_private`].
//!
//! In Tor's v3 onion service design, Tor uses a _key blinding_
//! algorithm to derive a publicly known Ed25519 key from a different
//! Ed25519 key used as the .onion address. This algorithm allows
//! directories to validate the signatures on onion service
//! descriptors, without knowing which services they represent. We
//! implement this blinding operation via [`blind_pubkey`].
//!
//! ## TODO
//!
//! Recommend more standardized ways to do these things.
// Ideally there would be a feature that we would use in the CI, rather than this ad-hoc list.
#![cfg_attr(
not(all(test, feature = "hsv3-service", feature = "relay")),
allow(unused_imports)
)]
use crate::{d, pk};
use digest::Digest;
use thiserror::Error;
use curve25519_dalek::scalar::Scalar;
pub use ed25519_dalek::{ExpandedSecretKey, Keypair, PublicKey, SecretKey, Signature};
pub use pk::ed25519::ExpandedKeypair;
/// Convert a curve25519 public key (with sign bit) to an ed25519
/// public key, for use in ntor key cross-certification.
///
/// Note that this formula is not standardized; don't use
/// it for anything besides cross-certification.
pub fn convert_curve25519_to_ed25519_public(
pubkey: &pk::curve25519::PublicKey,
signbit: u8,
) -> Option<pk::ed25519::PublicKey> {
use curve25519_dalek::montgomery::MontgomeryPoint;
let point = MontgomeryPoint(*pubkey.as_bytes());
let edpoint = point.to_edwards(signbit)?;
// TODO: This is inefficient; we shouldn't have to re-compress
// this point to get the public key we wanted. But there's no way
// with the current API that I can to construct an ed25519 public
// key from a compressed point.
let compressed_y = edpoint.compress();
pk::ed25519::PublicKey::from_bytes(compressed_y.as_bytes()).ok()
}
/// Convert a curve25519 private key to an ed25519 private key (and
/// give a sign bit) to use with it, for use in ntor key cross-certification.
///
/// Note that this formula is not standardized; don't use
/// it for anything besides cross-certification.
///
/// *NEVER* use these keys to sign inputs that may be generated by an
/// attacker.
///
/// # Panics
///
/// If the `debug_assertions` feature is enabled, this function will
/// double-check that the key it is about to return is the right
/// private key for the public key returned by
/// `convert_curve25519_to_ed25519_public`.
///
/// This panic should be impossible unless there are implementation
/// bugs.
#[cfg(any(test, feature = "cvt-x25519"))]
pub fn convert_curve25519_to_ed25519_private(
privkey: &pk::curve25519::StaticSecret,
) -> Option<(pk::ed25519::ExpandedKeypair, u8)> {
use crate::d::Sha512;
use zeroize::Zeroizing;
let h = Sha512::new()
.chain_update(privkey.to_bytes())
.chain_update(&b"Derive high part of ed25519 key from curve25519 key\0"[..])
.finalize();
let mut bytes = Zeroizing::new([0_u8; 64]);
bytes[0..32].clone_from_slice(&privkey.to_bytes());
bytes[32..64].clone_from_slice(&h[0..32]);
let secret = pk::ed25519::ExpandedSecretKey::from_bytes(&bytes[..]).ok()?;
let public: pk::ed25519::PublicKey = (&secret).into();
let signbit = public.as_bytes()[31] >> 7;
#[cfg(debug_assertions)]
{
let curve_pubkey1 = pk::curve25519::PublicKey::from(privkey);
let ed_pubkey1 = convert_curve25519_to_ed25519_public(&curve_pubkey1, signbit)?;
assert_eq!(ed_pubkey1, public);
}
Some((pk::ed25519::ExpandedKeypair { public, secret }, signbit))
}
/// Convert an ed25519 private key to a curve25519 private key.
///
/// This creates a curve25519 key as described in section-5.1.5 of RFC8032: the bytes of the secret
/// part of `keypair` are hashed using SHA-512, and the result is clamped (the first 3 bits of the
/// first byte are cleared, the highest bit of the last byte is cleared, the second highest bit of
/// the last byte is set).
///
/// Note: Using the same keypair for multiple purposes (such as key-exchange and signing) is
/// considered bad practice. Don't use this function unless you know what you're doing.
/// See [On using the same key pair for Ed25519 and an X25519 based
/// KEM](https://eprint.iacr.org/2021/509.pdf).
///
/// This function is needed by the `ArtiNativeKeystore` from `tor-keymgr` to convert ed25519
/// private keys to x25519. This is because `ArtiNativeKeystore` stores x25519 private keys as
/// ssh-ed25519 OpenSSH keys. Other similar use cases are also valid.
///
/// It's important to note that converting a private key from ed25519 -> curve25519 -> ed25519 will
/// yield an [`ExpandedKeypair`] that is _not_ identical to the
/// expanded version of the original [`Keypair`]: the lower halves (the keys) of
/// the expanded key pairs will be the same, but their upper halves (the nonces) will be different.
///
/// # Panics
///
/// If the `debug_assertions` feature is enabled, this function will double-check that the key it
/// is about to return is clamped.
///
/// This panic should be impossible unless we have upgraded x25519-dalek without auditing this
/// function.
#[cfg(any(test, feature = "cvt-x25519"))]
pub fn convert_ed25519_to_curve25519_private(
keypair: &pk::ed25519::Keypair,
) -> pk::curve25519::StaticSecret {
use crate::d::Sha512;
use zeroize::Zeroize as _;
// Generate the key according to section-5.1.5 of rfc8032
let h = Sha512::digest(keypair.secret.to_bytes());
let mut bytes = [0_u8; 32];
bytes.clone_from_slice(&h[0..32]);
// StaticSecret::from handles the clamping
let secret = pk::curve25519::StaticSecret::from(bytes);
bytes.zeroize();
// TODO #808: Review this function after upgrading to the latest x25519-dalek.
//
// This function was written with x25519-dalek version =2.0.0-rc.2 in mind, where
// StaticSecret::from returns a clamped value. However, in the latest version of x25519-dalek,
// StaticSecret::from does _not_ do any clamping (the clamping is still done during
// scalar-point multiplication though). This might not be an issue, but we should double-check
// this is OK.
//
// The debug_assertions can be removed when #808 is closed.
#[cfg(debug_assertions)]
{
// Ensure StaticSecret::from actually handled the clamping.
// This will panic if we bump x25519-dalek without updating this code.
let bytes = secret.to_bytes();
// Clamping should clear the last 3 bits of the first byte.
assert_eq!(bytes[0] & 0b111, 0);
// Clamping should clear the highest bit and set the second highest bit of the last byte.
assert_eq!(bytes[31] & 0b11000000, 0b01000000);
}
secret
}
/// An error occurred during a key-blinding operation.
#[derive(Error, Debug, PartialEq, Eq)]
#[non_exhaustive]
pub enum BlindingError {
/// A bad public key was provided for blinding
#[error("Public key was invalid")]
BadPubkey,
/// Dalek failed the scalar multiplication
#[error("Key blinding failed")]
BlindingFailed,
}
// Convert this dalek error to a BlindingError
impl From<ed25519_dalek::SignatureError> for BlindingError {
fn from(_: ed25519_dalek::SignatureError) -> BlindingError {
BlindingError::BlindingFailed
}
}
/// Helper: clamp a blinding factor and use it to compute a blinding factor.
///
/// Described in part of rend-spec-v3 A.2.
///
/// This is a common step for public-key and private-key blinding.
#[cfg(any(feature = "hsv3-client", feature = "hsv3-service"))]
fn clamp_blinding_factor(mut h: [u8; 32]) -> Scalar {
h[0] &= 248;
h[31] &= 63;
h[31] |= 64;
// Transform it into a scalar so that we can do scalar mult.
Scalar::from_bytes_mod_order(h)
}
/// Blind the ed25519 public key `pk` using the blinding factor
/// `h`, and return the blinded public key.
///
/// This algorithm is described in `rend-spec-v3.txt`, section A.2.
/// In the terminology of that section, the value `pk` corresponds to
/// `A`, and
/// `h` is the value `h = H(...)`, before clamping.
///
/// Note that the approach used to clamp `h` to a scalar means
/// that different possible values for `h` may yield the same
/// output for a given `pk`. This and other limitations make this
/// function unsuitable for use outside the context of
/// `rend-spec-v3.txt` without careful analysis.
///
/// # Errors
///
/// This function can fail if the input is not actually a valid
/// Ed25519 public key.
///
/// # Availability
///
/// This function is only available when the `hsv3-client` feature is enabled.
#[cfg(feature = "hsv3-client")]
pub fn blind_pubkey(pk: &PublicKey, h: [u8; 32]) -> Result<PublicKey, BlindingError> {
use curve25519_dalek::edwards::CompressedEdwardsY;
let blinding_factor = clamp_blinding_factor(h);
// Convert the public key to a point on the curve
let pubkey_point = CompressedEdwardsY(pk.to_bytes())
.decompress()
.ok_or(BlindingError::BadPubkey)?;
// Do the scalar multiplication and get a point back
let blinded_pubkey_point = (blinding_factor * pubkey_point).compress();
// Turn the point back into bytes and return it
Ok(PublicKey::from_bytes(&blinded_pubkey_point.0)?)
}
/// Blind the ed25519 secret key `sk` using the blinding factor `h`, and
/// return the blinded secret key.
///
/// This algorithm is described in `rend-spec-v3.txt`, section A.2.
/// `h` is the value `h = H(...)`, before clamping.
///
/// Note that the approach used to clamp `h` to a scalar means that
/// different possible values for `h` may yield the same output for a given
/// `pk`. This and other limitations make this function unsuitable for use
/// outside the context of `rend-spec-v3.txt` without careful analysis.
///
/// # Errors
///
/// This function can fail if the input is not actually a valid Ed25519 secret
/// key.
///
/// # Availability
///
/// This function is only available when the `hsv3-client` feature is enabled.
///
/// # Limitations
///
/// The secret keys produced by this will _not_ produce the correct public keys
/// if you call "PublicKey::from_bytes()" on them. To find the correct
/// corresponding blinded public key,
/// call [`blind_pubkey`] on `keypair.public`.
///
/// This unfortunate behavior occurs because `PublicKey::from` code always does
/// the ceremonial x25519 bit-twiddling on its scalar inputs, whereas in this
/// case a modular reduction would be the correct operation. (The input is known
/// to be a scalar!)
#[cfg(feature = "hsv3-service")]
pub fn blind_keypair(
keypair: &ExpandedKeypair,
h: [u8; 32],
) -> Result<ExpandedKeypair, BlindingError> {
use zeroize::Zeroizing;
/// Fixed string specified in rend-spec-v3.txt, used for blinding the
/// original nonce. (Technically, any string would do, but this one keeps
/// implementations consistent.)
const RH_BLIND_STRING: &[u8] = b"Derive temporary signing key hash input";
let blinding_factor = clamp_blinding_factor(h);
let secret_key_bytes = Zeroizing::new(keypair.secret.to_bytes());
let mut blinded_key_bytes = Zeroizing::new([0_u8; 64]);
{
let secret_key = Scalar::from_bits(
secret_key_bytes[0..32]
.try_into()
.expect("32-byte array not 32 bytes long!?"),
);
let blinded_key = secret_key * blinding_factor;
blinded_key_bytes[0..32].copy_from_slice(blinded_key.as_bytes());
}
{
let mut h = d::Sha512::new();
h.update(RH_BLIND_STRING);
h.update(&secret_key_bytes[32..]);
let mut d = Zeroizing::new([0_u8; 64]);
h.finalize_into(
d.as_mut()
.try_into()
.expect("64-byte array not 64 bytes long!?"),
);
blinded_key_bytes[32..64].copy_from_slice(&d[0..32]);
}
// We cannot derive our blinded public key from `secret`; we must instead
// re-blind `public`. (See "Limitations" above for an explanation.)
let public = blind_pubkey(&keypair.public, h)?;
let secret = ExpandedSecretKey::from_bytes(&blinded_key_bytes[..])
.map_err(|_| BlindingError::BlindingFailed)?;
Ok(ExpandedKeypair { secret, public })
}
#[cfg(test)]
mod tests {
// @@ begin test lint list maintained by maint/add_warning @@
#![allow(clippy::bool_assert_comparison)]
#![allow(clippy::clone_on_copy)]
#![allow(clippy::dbg_macro)]
#![allow(clippy::print_stderr)]
#![allow(clippy::print_stdout)]
#![allow(clippy::single_char_pattern)]
#![allow(clippy::unwrap_used)]
#![allow(clippy::unchecked_duration_subtraction)]
#![allow(clippy::useless_vec)]
#![allow(clippy::needless_pass_by_value)]
//! <!-- @@ end test lint list maintained by maint/add_warning @@ -->
use super::*;
#[test]
fn curve_to_ed_compatible() {
use crate::pk::{curve25519, ed25519};
use crate::util::rand_compat::RngCompatExt;
use signature::Verifier;
use tor_basic_utils::test_rng::testing_rng;
let rng = testing_rng().rng_compat();
let curve_sk = curve25519::StaticSecret::new(rng);
let curve_pk = curve25519::PublicKey::from(&curve_sk);
let (ed_kp, signbit) = convert_curve25519_to_ed25519_private(&curve_sk).unwrap();
let ed_sk = ed_kp.secret;
let ed_pk0 = ed_kp.public;
let ed_pk1: ed25519::PublicKey = (&ed_sk).into();
let ed_pk2 = convert_curve25519_to_ed25519_public(&curve_pk, signbit).unwrap();
let msg = b"tis the gift to be simple";
let sig1 = ed_sk.sign(&msg[..], &ed_pk1);
assert!(ed_pk1.verify(&msg[..], &sig1).is_ok());
assert!(ed_pk2.verify(&msg[..], &sig1).is_ok());
assert_eq!(ed_pk1, ed_pk0);
assert_eq!(ed_pk1, ed_pk2);
}
#[test]
fn ed_to_curve_compatible() {
use crate::pk::{curve25519, ed25519};
use crate::util::rand_compat::RngCompatExt;
use signature::Verifier;
use tor_basic_utils::test_rng::testing_rng;
let mut rng = testing_rng().rng_compat();
let ed_kp = ed25519::Keypair::generate(&mut rng);
let ed_sk1 = ExpandedSecretKey::from(&ed_kp.secret);
let ed_pk1 = ed25519::PublicKey::from(&ed_sk1);
let curve_sk = convert_ed25519_to_curve25519_private(&ed_kp);
let curve_pk = curve25519::PublicKey::from(&curve_sk);
let (ed_kp2, signbit) = convert_curve25519_to_ed25519_private(&curve_sk).unwrap();
let ed_pk2 = convert_curve25519_to_ed25519_public(&curve_pk, signbit).unwrap();
let ed_sk2 = ed_kp2.secret;
assert_eq!(ed_pk1, ed_pk2);
// Make sure the 2 secret keys are the same.
// Note: we only look at the first 32 bytes of the (expanded) key because the last 32 bytes
// represent the "domain-separation nonce".
assert_eq!(ed_sk1.to_bytes()[..32], ed_sk2.to_bytes()[..32]);
let msg = b"tis the gift to be simple";
for sk in &[ed_sk1, ed_sk2] {
let sig = sk.sign(&msg[..], &ed_pk1);
assert!(ed_pk1.verify(&msg[..], &sig).is_ok());
assert!(ed_pk2.verify(&msg[..], &sig).is_ok());
}
}
#[test]
#[cfg(all(feature = "hsv3-client", feature = "hsv3-service"))]
fn blinding() {
// Test the ed25519 blinding function.
//
// These test vectors are from our ed25519 implementation and related
// functions. These were automatically generated by the
// ed25519_exts_ref.py script in little-t-tor and they are also used by
// little-t-tor and onionbalance:
use ed25519_dalek::Verifier;
let seckeys = vec![
b"26c76712d89d906e6672dafa614c42e5cb1caac8c6568e4d2493087db51f0d36",
b"fba7a5366b5cb98c2667a18783f5cf8f4f8d1a2ce939ad22a6e685edde85128d",
b"67e3aa7a14fac8445d15e45e38a523481a69ae35513c9e4143eb1c2196729a0e",
b"d51385942033a76dc17f089a59e6a5a7fe80d9c526ae8ddd8c3a506b99d3d0a6",
b"5c8eac469bb3f1b85bc7cd893f52dc42a9ab66f1b02b5ce6a68e9b175d3bb433",
b"eda433d483059b6d1ff8b7cfbd0fe406bfb23722c8f3c8252629284573b61b86",
b"4377c40431c30883c5fbd9bc92ae48d1ed8a47b81d13806beac5351739b5533d",
b"c6bbcce615839756aed2cc78b1de13884dd3618f48367a17597a16c1cd7a290b",
b"c6bbcce615839756aed2cc78b1de13884dd3618f48367a17597a16c1cd7a290b",
b"c6bbcce615839756aed2cc78b1de13884dd3618f48367a17597a16c1cd7a290b",
];
let expanded_seckeys = vec![
b"c0a4de23cc64392d85aa1da82b3defddbea946d13bb053bf8489fa9296281f495022f1f7ec0dcf52f07d4c7965c4eaed121d5d88d0a8ff546b06116a20e97755",
b"18a8a69a06790dac778e882f7e868baacfa12521a5c058f5194f3a729184514a2a656fe7799c3e41f43d756da8d9cd47a061316cfe6147e23ea2f90d1ca45f30",
b"58d84f8862d2ecfa30eb491a81c36d05b574310ea69dae18ecb57e992a896656b982187ee96c15bf4caeeab2d0b0ae4cd0b8d17470fc7efa98bb26428f4ef36d",
b"50702d20b3550c6e16033db5ad4fba16436f1ecc7485be6af62b0732ceb5d173c47ccd9d044b6ea99dd99256adcc9c62191be194e7cb1a5b58ddcec85d876a2b",
b"7077464c864c2ed5ed21c9916dc3b3ba6256f8b742fec67658d8d233dadc8d5a7a82c371083cc86892c2c8782dda2a09b6baf016aec51b689183ae59ce932ff2",
b"8883c1387a6c86fc0bd7b9f157b4e4cd83f6885bf55e2706d2235d4527a2f05311a3595953282e436df0349e1bb313a19b3ddbf7a7b91ecce8a2c34abadb38b3",
b"186791ac8d03a3ac8efed6ac360467edd5a3bed2d02b3be713ddd5be53b3287ee37436e5fd7ac43794394507ad440ecfdf59c4c255f19b768a273109e06d7d8e",
b"b003077c1e52a62308eef7950b2d532e1d4a7eea50ad22d8ac11b892851f1c40ffb9c9ff8dcd0c6c233f665a2e176324d92416bfcfcd1f787424c0c667452d86",
b"b003077c1e52a62308eef7950b2d532e1d4a7eea50ad22d8ac11b892851f1c40ffb9c9ff8dcd0c6c233f665a2e176324d92416bfcfcd1f787424c0c667452d86",
b"b003077c1e52a62308eef7950b2d532e1d4a7eea50ad22d8ac11b892851f1c40ffb9c9ff8dcd0c6c233f665a2e176324d92416bfcfcd1f787424c0c667452d86",
];
let pubkeys = vec![
b"c2247870536a192d142d056abefca68d6193158e7c1a59c1654c954eccaff894",
b"1519a3b15816a1aafab0b213892026ebf5c0dc232c58b21088d88cb90e9b940d",
b"081faa81992e360ea22c06af1aba096e7a73f1c665bc8b3e4e531c46455fd1dd",
b"73cfa1189a723aad7966137cbffa35140bb40d7e16eae4c40b79b5f0360dd65a",
b"66c1a77104d86461b6f98f73acf3cd229c80624495d2d74d6fda1e940080a96b",
b"d21c294db0e64cb2d8976625786ede1d9754186ae8197a64d72f68c792eecc19",
b"c4d58b4cf85a348ff3d410dd936fa460c4f18da962c01b1963792b9dcc8a6ea6",
b"95126f14d86494020665face03f2d42ee2b312a85bc729903eb17522954a1c4a",
b"95126f14d86494020665face03f2d42ee2b312a85bc729903eb17522954a1c4a",
b"95126f14d86494020665face03f2d42ee2b312a85bc729903eb17522954a1c4a",
];
let params = vec![
"54a513898b471d1d448a2f3c55c1de2c0ef718c447b04497eeb999ed32027823",
"831e9b5325b5d31b7ae6197e9c7a7baf2ec361e08248bce055908971047a2347",
"ac78a1d46faf3bfbbdc5af5f053dc6dc9023ed78236bec1760dadfd0b2603760",
"f9c84dc0ac31571507993df94da1b3d28684a12ad14e67d0a068aba5c53019fc",
"b1fe79d1dec9bc108df69f6612c72812755751f21ecc5af99663b30be8b9081f",
"81f1512b63ab5fb5c1711a4ec83d379c420574aedffa8c3368e1c3989a3a0084",
"97f45142597c473a4b0e9a12d64561133ad9e1155fe5a9807fe6af8a93557818",
"3f44f6a5a92cde816635dfc12ade70539871078d2ff097278be2a555c9859cd0",
"0000000000000000000000000000000000000000000000000000000000000000",
"1111111111111111111111111111111111111111111111111111111111111111",
];
let blinded_pubkeys = vec![
"1fc1fa4465bd9d4956fdbdc9d3acb3c7019bb8d5606b951c2e1dfe0b42eaeb41",
"1cbbd4a88ce8f165447f159d9f628ada18674158c4f7c5ead44ce8eb0fa6eb7e",
"c5419ad133ffde7e0ac882055d942f582054132b092de377d587435722deb028",
"3e08d0dc291066272e313014bfac4d39ad84aa93c038478a58011f431648105f",
"59381f06acb6bf1389ba305f70874eed3e0f2ab57cdb7bc69ed59a9b8899ff4d",
"2b946a484344eb1c17c89dd8b04196a84f3b7222c876a07a4cece85f676f87d9",
"c6b585129b135f8769df2eba987e76e089e80ba3a2a6729134d3b28008ac098e",
"0eefdc795b59cabbc194c6174e34ba9451e8355108520554ec285acabebb34ac",
"312404d06a0a9de489904b18d5233e83a50b225977fa8734f2c897a73c067952",
"952a908a4a9e0e5176a2549f8f328955aca6817a9fdc59e3acec5dec50838108",
];
let blinded_seckeys = vec![
"293c3acff4e902f6f63ddc5d5caa2a57e771db4f24de65d4c28df3232f47fa01171d43f24e3f53e70ec7ac280044ac77d4942dee5d6807118a59bdf3ee647e89",
"38b88f9f9440358da544504ee152fb475528f7c51c285bd1c68b14ade8e29a07b8ceff20dfcf53eb52b891fc078c934efbf0353af7242e7dc51bb32a093afa29",
"4d03ce16a3f3249846aac9de0a0075061495c3b027248eeee47da4ddbaf9e0049217f52e92797462bd890fc274672e05c98f2c82970d640084781334aae0f940",
"51d7db01aaa0d937a9fd7c8c7381445a14d8fa61f43347af5460d7cd8fda9904509ecee77082ce088f7c19d5a00e955eeef8df6fa41686abc1030c2d76807733",
"1f76cab834e222bd2546efa7e073425680ab88df186ff41327d3e40770129b00b57b95a440570659a440a3e4771465022a8e67af86bdf2d0990c54e7bb87ff9a",
"c23588c23ee76093419d07b27c6df5922a03ac58f96c53671456a7d1bdbf560ec492fc87d5ec2a1b185ca5a40541fdef0b1e128fd5c2380c888bfa924711bcab",
"3ed249c6932d076e1a2f6916975914b14e8c739da00992358b8f37d3e790650691b4768f8e556d78f4bdcb9a13b6f6066fe81d3134ae965dc48cd0785b3af2b8",
"288cbfd923cb286d48c084555b5bdd06c05e92fb81acdb45271367f57515380e053d9c00c81e1331c06ab50087be8cfc7dc11691b132614474f1aa9c2503cccd",
"e5cd03eb4cc456e11bc36724b558873df0045729b22d8b748360067a7770ac02053d9c00c81e1331c06ab50087be8cfc7dc11691b132614474f1aa9c2503cccd",
"2cf7ed8b163f5af960d2fc62e1883aa422a6090736b4f18a5456ddcaf78ede0c053d9c00c81e1331c06ab50087be8cfc7dc11691b132614474f1aa9c2503cccd",
];
for i in 0..pubkeys.len() {
let sk = SecretKey::from_bytes(&hex::decode(seckeys[i]).unwrap()).unwrap();
let esk = ExpandedSecretKey::from(&sk);
assert_eq!(
&esk.to_bytes()[..],
&hex::decode(expanded_seckeys[i]).unwrap()
);
let public = (&esk).into();
let kp_in = ExpandedKeypair {
secret: esk,
public,
};
let pk = PublicKey::from_bytes(&hex::decode(pubkeys[i]).unwrap()).unwrap();
assert_eq!(pk, PublicKey::from(&sk));
let param = hex::decode(params[i]).unwrap().try_into().unwrap();
// Blind the secret key, and make sure that the result is expected.
let blinded_kp = blind_keypair(&kp_in, param).unwrap();
assert_eq!(
hex::encode(blinded_kp.secret.to_bytes()),
blinded_seckeys[i]
);
let blinded_pk = blind_pubkey(&pk, param).unwrap();
// Make sure blinded pk is as expected.
assert_eq!(hex::encode(blinded_pk.to_bytes()), blinded_pubkeys[i]);
// Make sure that signature made with blinded sk is validated by
// blinded pk.
let sig = blinded_kp.sign(b"hello world");
blinded_pk.verify(b"hello world", &sig).unwrap();
if false {
// This test does not pass: see "limitations" section in documentation for blind_seckey.
assert_eq!(
blinded_pk.to_bytes(),
PublicKey::from(&blinded_kp.secret).to_bytes()
);
} else {
let blinded_sk_bytes = blinded_kp.secret.to_bytes();
let blinded_sk_scalar =
Scalar::from_bits(blinded_sk_bytes[0..32].try_into().unwrap());
let pk2 = blinded_sk_scalar * curve25519_dalek::constants::ED25519_BASEPOINT_POINT;
let pk2 = pk2.compress();
assert_eq!(pk2.as_bytes(), blinded_pk.as_bytes());
}
}
}
// TODO #808: Remove this test after upgrading to the latest x25519-dalek. The only purpose
#[test]
fn static_secret_clamping() {
let mut secret = [1_u8; 32];
const LAST_BYTE: &[u8] = &[0b10111111, 0b10000000];
for last_byte in LAST_BYTE {
// Clamping should clear the last 3 bits of the first byte.
secret[0] = 0b111;
// Clamping should clear the highest bit and set the second highest bit of the last byte.
secret[31] = *last_byte;
let static_secret = crate::pk::curve25519::StaticSecret::from(secret);
let secret = static_secret.to_bytes();
assert_eq!(secret[0] & 0b111, 0);
assert_eq!(secret[31] & 0b11000000, 0b01000000);
// The last 6 bits should be unchanged
assert_eq!(secret[31] & 0b00111111, last_byte & 0b00111111);
}
}
}
|