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
// -*- mode: rust; -*- // // This file is part of schnorrkel. // Copyright (c) 2019 Web 3 Foundation // See LICENSE for licensing information. // // Authors: // - Jeffrey Burdges <[email protected]> //! ### Schnorr signature contexts and configuration, adaptable to most Schnorr signature schemes. use core::cell::RefCell; use rand_core::{RngCore,CryptoRng}; use merlin::Transcript; use curve25519_dalek::digest::{Input,FixedOutput,ExtendableOutput,XofReader}; use curve25519_dalek::digest::generic_array::typenum::{U32,U64}; use curve25519_dalek::ristretto::CompressedRistretto; // RistrettoPoint use curve25519_dalek::scalar::Scalar; // === Signing context as transcript === // /// Schnorr signing transcript /// /// We envision signatures being on messages, but if a signature occurs /// inside a larger protocol then the signature scheme's internal /// transcript may exist before or persist after signing. /// /// In this trait, we provide an interface for Schnorr signature-like /// constructions that is compatable with `merlin::Transcript`, but /// abstract enough to support conventional hash functions as well. /// /// We warn however that conventional hash functions do not provide /// strong enough domain seperation for usage via `&mut` references. /// /// We fold randomness into witness generation here too, which /// gives every function that takes a `SigningTranscript` a default /// argument `rng: impl Rng = thread_rng()` too. /// /// We also abstract over owned and borrowed `merlin::Transcript`s, /// so that simple use cases do not suffer from our support for. pub trait SigningTranscript { /// Extend transcript with some bytes, shadowed by `merlin::Transcript`. fn commit_bytes(&mut self, label: &'static [u8], bytes: &[u8]); /// Extend transcript with a protocol name fn proto_name(&mut self, label: &'static [u8]) { self.commit_bytes(b"proto-name", label); } /// Extend the transcript with a compressed Ristretto point fn commit_point(&mut self, label: &'static [u8], compressed: &CompressedRistretto) { self.commit_bytes(label, compressed.as_bytes()); } /* fn commit_sorted_points<P,S>(&mut self, label: &'static [u8], set: &mut [P]) where P: Borrow<CompressedRistretto>, // S: BorrowMut<[P]>, { // let set = set.borrow_mut(); set.sort_unstable_by( |a,b| a.borrow().as_bytes() .cmp(b.borrow().as_bytes()) ); for p in set.iter() { self.commit_point(label,p.borrow()); } } */ /// Produce some challenge bytes, shadowed by `merlin::Transcript`. fn challenge_bytes(&mut self, label: &'static [u8], dest: &mut [u8]); /// Produce the public challenge scalar `e`. fn challenge_scalar(&mut self, label: &'static [u8]) -> Scalar { let mut buf = [0; 64]; self.challenge_bytes(label, &mut buf); Scalar::from_bytes_mod_order_wide(&buf) } /// Produce a secret witness scalar `k`, aka nonce, from the protocol /// transcript and any "nonce seeds" kept with the secret keys. fn witness_scalar(&self, label: &'static [u8], nonce_seeds: &[&[u8]]) -> Scalar { let mut scalar_bytes = [0u8; 64]; self.witness_bytes(label, &mut scalar_bytes, nonce_seeds); Scalar::from_bytes_mod_order_wide(&scalar_bytes) } /// Produce secret witness bytes from the protocol transcript /// and any "nonce seeds" kept with the secret keys. fn witness_bytes(&self, label: &'static [u8], dest: &mut [u8], nonce_seeds: &[&[u8]]) { self.witness_bytes_rng(label, dest, nonce_seeds, super::rand_hack()) } /// Produce secret witness bytes from the protocol transcript /// and any "nonce seeds" kept with the secret keys. fn witness_bytes_rng<R>(&self, label: &'static [u8], dest: &mut [u8], nonce_seeds: &[&[u8]], rng: R) where R: RngCore+CryptoRng; } /// We delegates any mutable reference to its base type, like `&mut Rng` /// or similar to `BorrowMut<..>` do, but doing so here simplifies /// alternative implementations. impl<T> SigningTranscript for &mut T where T: SigningTranscript + ?Sized, { #[inline(always)] fn commit_bytes(&mut self, label: &'static [u8], bytes: &[u8]) { (**self).commit_bytes(label,bytes) } #[inline(always)] fn proto_name(&mut self, label: &'static [u8]) { (**self).proto_name(label) } #[inline(always)] fn commit_point(&mut self, label: &'static [u8], compressed: &CompressedRistretto) { (**self).commit_point(label, compressed) } #[inline(always)] fn challenge_bytes(&mut self, label: &'static [u8], dest: &mut [u8]) { (**self).challenge_bytes(label,dest) } #[inline(always)] fn challenge_scalar(&mut self, label: &'static [u8]) -> Scalar { (**self).challenge_scalar(label) } #[inline(always)] fn witness_scalar(&self, label: &'static [u8], nonce_seeds: &[&[u8]]) -> Scalar { (**self).witness_scalar(label,nonce_seeds) } #[inline(always)] fn witness_bytes(&self, label: &'static [u8], dest: &mut [u8], nonce_seeds: &[&[u8]]) { (**self).witness_bytes(label,dest,nonce_seeds) } #[inline(always)] fn witness_bytes_rng<R>(&self, label: &'static [u8], dest: &mut [u8], nonce_seeds: &[&[u8]], rng: R) where R: RngCore+CryptoRng { (**self).witness_bytes_rng(label,dest,nonce_seeds,rng) } } /// We delegate `SigningTranscript` methods to the corresponding /// inherent methods of `merlin::Transcript` and implement two /// witness methods to avoid abrtasting the `merlin::TranscriptRng` /// machenry. impl SigningTranscript for Transcript { fn commit_bytes(&mut self, label: &'static [u8], bytes: &[u8]) { Transcript::append_message(self, label, bytes) } fn challenge_bytes(&mut self, label: &'static [u8], dest: &mut [u8]) { Transcript::challenge_bytes(self, label, dest) } fn witness_bytes_rng<R>(&self, label: &'static [u8], dest: &mut [u8], nonce_seeds: &[&[u8]], mut rng: R) where R: RngCore+CryptoRng { let mut br = self.build_rng(); for ns in nonce_seeds { br = br.rekey_with_witness_bytes(label, ns); } let mut r = br.finalize(&mut rng); r.fill_bytes(dest) } } /// Schnorr signing context /// /// We expect users to have seperate `SigningContext`s for each role /// that signature play in their protocol. These `SigningContext`s /// may be global `lazy_static!`s, or perhaps constants in future. /// /// To sign a message, apply the appropriate inherent method to create /// a signature transcript. /// /// You should use `merlin::Transcript`s directly if you must do /// anything more complex, like use signatures in larger zero-knoweldge /// protocols or sign several components but only reveal one later. /// /// We declare these methods `#[inline(always)]` because rustc does /// not handle large returns as efficently as one might like. /// https://github.com/rust-random/rand/issues/817 #[derive(Clone)] // Debug pub struct SigningContext(Transcript); /// Initialize a signing context from a static byte string that /// identifies the signature's role in the larger protocol. #[inline(always)] pub fn signing_context(context : &[u8]) -> SigningContext { SigningContext::new(context) } impl SigningContext { /// Initialize a signing context from a static byte string that /// identifies the signature's role in the larger protocol. #[inline(always)] pub fn new(context : &[u8]) -> SigningContext { let mut t = Transcript::new(b"SigningContext"); t.append_message(b"",context); SigningContext(t) } /// Initalize an owned signing transcript on a message provided as a byte array. /// /// Avoid this method when processing large slices because it /// calls `merlin::Transcript::append_message` directly and /// `merlin` is designed for domain seperation, not performance. #[inline(always)] pub fn bytes(&self, bytes: &[u8]) -> Transcript { let mut t = self.0.clone(); t.append_message(b"sign-bytes", bytes); t } /// Initalize an owned signing transcript on a message provided /// as a hash function with extensible output mode (XOF) by /// finalizing the hash and extracting 32 bytes from XOF. #[inline(always)] pub fn xof<D: ExtendableOutput>(&self, h: D) -> Transcript { let mut prehash = [0u8; 32]; h.xof_result().read(&mut prehash); let mut t = self.0.clone(); t.append_message(b"sign-XoF", &prehash); t } /// Initalize an owned signing transcript on a message provided as /// a hash function with 256 bit output. #[inline(always)] pub fn hash256<D: FixedOutput<OutputSize=U32>>(&self, h: D) -> Transcript { let mut prehash = [0u8; 32]; prehash.copy_from_slice(h.fixed_result().as_slice()); let mut t = self.0.clone(); t.append_message(b"sign-256", &prehash); t } /// Initalize an owned signing transcript on a message provided as /// a hash function with 512 bit output, usually a gross over kill. #[inline(always)] pub fn hash512<D: FixedOutput<OutputSize=U64>>(&self, h: D) -> Transcript { let mut prehash = [0u8; 64]; prehash.copy_from_slice(h.fixed_result().as_slice()); let mut t = self.0.clone(); t.append_message(b"sign-256", &prehash); t } } /// Very simple transcript construction from a modern hash fucntion. /// /// We provide this transcript type to directly use conventional hash /// functions with an extensible output mode, like Shake128 and /// Blake2x. /// /// We recommend using `merlin::Transcript` instead because merlin /// provides the transcript abstraction natively and might function /// better in low memory enviroments. We therefore do not provide /// conveniences like `signing_context` for this. /// /// We note that merlin already uses Keccak, upon which Shak128 is based, /// and that no rust implementation for Blake2x currently exists. /// /// We caution that our transcript abstractions cannot provide the /// protections agsint hash collisions that Ed25519 provides via /// double hashing, but that prehashed Ed25519 variants loose. /// As such, any hash function used here must be collision resistant. /// We strongly recommend agsint building XOFs from weaker hash /// functions like SHA1 with HKDF constructions or similar. /// /// In `XoFTranscript` style, we never expose the hash function `H` /// underlying this type, so that developers cannot circument the /// domain seperartion provided by our methods. We do this to make /// `&mut XoFTranscript : SigningTranscript` safe. pub struct XoFTranscript<H>(H) where H: Input + ExtendableOutput + Clone; fn input_bytes<H: Input>(h: &mut H, bytes: &[u8]) { let l = bytes.len() as u64; h.input(l.to_le_bytes()); h.input(bytes); } impl<H> XoFTranscript<H> where H: Input + ExtendableOutput + Clone { /// Create a `XoFTranscript` from a conventional hash functions with an extensible output mode. /// /// We intentionally consume and never reexpose the hash function /// provided, so that our domain seperation works correctly even /// when using `&mut XoFTranscript : SigningTranscript`. #[inline(always)] pub fn new(h: H) -> XoFTranscript<H> { XoFTranscript(h) } } impl<H> From<H> for XoFTranscript<H> where H: Input + ExtendableOutput + Clone { #[inline(always)] fn from(h: H) -> XoFTranscript<H> { XoFTranscript(h) } } impl<H> SigningTranscript for XoFTranscript<H> where H: Input + ExtendableOutput + Clone { fn commit_bytes(&mut self, label: &'static [u8], bytes: &[u8]) { self.0.input(b"co"); input_bytes(&mut self.0, label); input_bytes(&mut self.0, bytes); } fn challenge_bytes(&mut self, label: &'static [u8], dest: &mut [u8]) { self.0.input(b"ch"); input_bytes(&mut self.0, label); let l = dest.len() as u64; self.0.input(l.to_le_bytes()); self.0.clone().chain(b"xof").xof_result().read(dest); } fn witness_bytes_rng<R>(&self, label: &'static [u8], dest: &mut [u8], nonce_seeds: &[&[u8]], mut rng: R) where R: RngCore+CryptoRng { let mut h = self.0.clone().chain(b"wb"); input_bytes(&mut h, label); for ns in nonce_seeds { input_bytes(&mut h, ns); } let l = dest.len() as u64; h.input(l.to_le_bytes()); let mut r = [0u8; 32]; rng.fill_bytes(&mut r); h.input(&r); h.xof_result().read(dest); } } /// Schnorr signing transcript with the default `ThreadRng` replaced /// by an arbitrary `CryptoRng`. /// /// If `ThreadRng` breaks on your platform, or merely if your paranoid, /// then you might "upgrade" from `ThreadRng` to `OsRng` by using calls /// like `keypair.sign( attach_rng(t,OSRng::new()) )`. /// We recommend instead simply fixing `ThreadRng` for your platform /// however. /// /// There are also derandomization tricks like /// `attach_rng(t,ChaChaRng::from_seed([0u8; 32]))` /// for deterministic signing in tests too. Although derandomization /// produces secure signatures, we recommend against doing this in /// production because we implement protocols like multi-signatures /// which likely become vulnerabile when derandomized. pub struct SigningTranscriptWithRng<T,R> where T: SigningTranscript, R: RngCore+CryptoRng { t: T, rng: RefCell<R>, } impl<T,R> SigningTranscript for SigningTranscriptWithRng<T,R> where T: SigningTranscript, R: RngCore+CryptoRng { fn commit_bytes(&mut self, label: &'static [u8], bytes: &[u8]) { self.t.commit_bytes(label, bytes) } fn challenge_bytes(&mut self, label: &'static [u8], dest: &mut [u8]) { self.t.challenge_bytes(label, dest) } fn witness_bytes(&self, label: &'static [u8], dest: &mut [u8], nonce_seeds: &[&[u8]]) { self.witness_bytes_rng(label, dest, nonce_seeds, &mut *self.rng.borrow_mut()) } fn witness_bytes_rng<RR>(&self, label: &'static [u8], dest: &mut [u8], nonce_seeds: &[&[u8]], rng: RR) where RR: RngCore+CryptoRng { self.t.witness_bytes_rng(label,dest,nonce_seeds,rng) } } /// Attach a `CryptoRng` to a `SigningTranscript` to repalce the default `ThreadRng` /// /// There are tricks like `attach_rng(t,ChaChaRng::from_seed([0u8; 32]))` /// for deterministic tests. We warn against doing this in production /// however because, although such derandomization produces secure Schnorr /// signatures, we do implement protocols here like multi-signatures which /// likely become vulnerabile when derandomized. pub fn attach_rng<T,R>(t: T, rng: R) -> SigningTranscriptWithRng<T,R> where T: SigningTranscript, R: RngCore+CryptoRng { SigningTranscriptWithRng { t, rng: RefCell::new(rng) } } /// Attach a fake `Rng` that returns all zeros, only for use in test vectors. /// You must never deploy this because some protocols like MuSig become insecure. #[cfg(test)] pub fn attach_test_vector_rng<T>(t: T) -> SigningTranscriptWithRng<T,impl RngCore+CryptoRng> where T: SigningTranscript { // Very insecure hack except this fn only exists in tests struct ZeroFakeRng; impl ::rand::RngCore for ZeroFakeRng { fn next_u32(&mut self) -> u32 { panic!() } fn next_u64(&mut self) -> u64 { panic!() } fn fill_bytes(&mut self, dest: &mut [u8]) { for i in dest.iter_mut() { *i = 0; } } fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), ::rand_core::Error> { self.fill_bytes(dest); Ok(()) } } impl ::rand::CryptoRng for ZeroFakeRng {} attach_rng(t, ZeroFakeRng) } #[cfg(feature = "rand_chacha")] use rand_chacha::ChaChaRng; /// Attach a `ChaChaRng` to a `Transcript` to repalce the default `ThreadRng` #[cfg(feature = "rand_chacha")] pub fn attach_chacharng<T>(t: T, seed: [u8; 32]) -> SigningTranscriptWithRng<T,ChaChaRng> where T: SigningTranscript { use rand_core::SeedableRng; attach_rng(t,ChaChaRng::from_seed(seed)) } /* #[cfg(test)] mod test { use sha3::Shake128; use curve25519_dalek::digest::{Input}; } */