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
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
use crate::codec::{Error as CodecError, StacksMessageCodec};
use crate::types::chainstate::VRFSeed;
use crate::util::hash::Sha512Trunc256Sum;
use crate::util::hash::{hex_bytes, to_hex};
use std::clone::Clone;
use std::cmp::Eq;
use std::cmp::Ord;
use std::cmp::Ordering;
use std::cmp::PartialEq;
use std::fmt::Debug;
use std::hash::{Hash, Hasher};
use std::ops::Deref;
use std::ops::DerefMut;
use ed25519_dalek::Keypair as VRFKeypair;
use ed25519_dalek::PublicKey as ed25519_PublicKey;
use ed25519_dalek::SecretKey as ed25519_PrivateKey;
use curve25519_dalek::constants::ED25519_BASEPOINT_POINT;
use curve25519_dalek::edwards::{CompressedEdwardsY, EdwardsPoint};
use curve25519_dalek::scalar::Scalar as ed25519_Scalar;
use sha2::Digest;
use sha2::Sha512;
use std::error;
use std::fmt;
use rand;
use std::io::{Read, Write};
#[derive(Clone)]
pub struct VRFPublicKey(pub ed25519_PublicKey);
pub struct VRFPrivateKey(pub ed25519_PrivateKey);
impl serde::Serialize for VRFPublicKey {
fn serialize<S: serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let inst = self.to_hex();
s.serialize_str(inst.as_str())
}
}
impl<'de> serde::Deserialize<'de> for VRFPublicKey {
fn deserialize<D: serde::Deserializer<'de>>(d: D) -> Result<VRFPublicKey, D::Error> {
let inst_str = String::deserialize(d)?;
VRFPublicKey::from_hex(&inst_str)
.ok_or_else(|| serde::de::Error::custom("Failed to parse VRF Public Key from hex"))
}
}
impl Clone for VRFPrivateKey {
fn clone(&self) -> VRFPrivateKey {
let bytes = self.to_bytes();
let pk = ed25519_PrivateKey::from_bytes(&bytes)
.expect("FATAL: could not do VRFPrivateKey round-trip");
VRFPrivateKey(pk)
}
}
impl Deref for VRFPublicKey {
type Target = ed25519_PublicKey;
fn deref(&self) -> &ed25519_PublicKey {
&self.0
}
}
impl DerefMut for VRFPublicKey {
fn deref_mut(&mut self) -> &mut ed25519_PublicKey {
&mut self.0
}
}
impl Debug for VRFPublicKey {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", &self.to_hex())
}
}
impl PartialEq for VRFPublicKey {
fn eq(&self, other: &VRFPublicKey) -> bool {
self.as_bytes().to_vec() == other.as_bytes().to_vec()
}
}
impl Eq for VRFPublicKey {}
impl PartialOrd for VRFPublicKey {
fn partial_cmp(&self, other: &VRFPublicKey) -> Option<Ordering> {
Some(self.as_bytes().to_vec().cmp(&other.as_bytes().to_vec()))
}
}
impl Ord for VRFPublicKey {
fn cmp(&self, other: &VRFPublicKey) -> Ordering {
self.as_bytes().to_vec().cmp(&other.as_bytes().to_vec())
}
}
impl Hash for VRFPublicKey {
fn hash<H: Hasher>(&self, state: &mut H) {
self.as_bytes().hash(state);
}
}
impl Deref for VRFPrivateKey {
type Target = ed25519_PrivateKey;
fn deref(&self) -> &ed25519_PrivateKey {
&self.0
}
}
impl DerefMut for VRFPrivateKey {
fn deref_mut(&mut self) -> &mut ed25519_PrivateKey {
&mut self.0
}
}
impl Debug for VRFPrivateKey {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", &self.to_hex())
}
}
#[cfg(test)]
impl PartialEq for VRFPrivateKey {
fn eq(&self, other: &VRFPrivateKey) -> bool {
self.as_bytes().to_vec() == other.as_bytes().to_vec()
}
}
impl VRFPrivateKey {
pub fn new() -> VRFPrivateKey {
let mut rng = rand::thread_rng();
let keypair: VRFKeypair = VRFKeypair::generate(&mut rng);
VRFPrivateKey(keypair.secret)
}
pub fn from_hex(h: &String) -> Option<VRFPrivateKey> {
match hex_bytes(h) {
Ok(b) => match ed25519_PrivateKey::from_bytes(&b[..]) {
Ok(pk) => Some(VRFPrivateKey(pk)),
Err(_) => None,
},
Err(_) => None,
}
}
pub fn from_bytes(b: &[u8]) -> Option<VRFPrivateKey> {
match ed25519_PrivateKey::from_bytes(b) {
Ok(pk) => Some(VRFPrivateKey(pk)),
Err(_) => None,
}
}
pub fn to_hex(&self) -> String {
to_hex(self.as_bytes())
}
}
impl VRFPublicKey {
pub fn from_private(pk: &VRFPrivateKey) -> VRFPublicKey {
VRFPublicKey(ed25519_PublicKey::from(&pk.0))
}
pub fn from_bytes(pubkey_bytes: &[u8]) -> Option<VRFPublicKey> {
match pubkey_bytes.len() {
32 => {
let mut pubkey_slice = [0; 32];
pubkey_slice.copy_from_slice(&pubkey_bytes[0..32]);
let checked_pubkey = CompressedEdwardsY(pubkey_slice);
match checked_pubkey.decompress() {
Some(_) => {}
None => {
return None;
}
}
match ed25519_PublicKey::from_bytes(&pubkey_slice) {
Ok(key) => Some(VRFPublicKey(key)),
Err(_) => None,
}
}
_ => None,
}
}
pub fn from_hex(h: &str) -> Option<VRFPublicKey> {
match hex_bytes(h) {
Ok(b) => VRF::check_public_key(&b),
Err(_) => None,
}
}
pub fn to_hex(&self) -> String {
to_hex(self.as_bytes())
}
}
#[derive(Debug)]
pub enum Error {
InvalidPublicKey,
InvalidDataError,
OSRNGError(rand::Error),
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
Error::InvalidPublicKey => write!(f, "Invalid public key"),
Error::InvalidDataError => write!(f, "No data could be found"),
Error::OSRNGError(ref e) => fmt::Display::fmt(e, f),
}
}
}
impl error::Error for Error {
fn cause(&self) -> Option<&dyn error::Error> {
match *self {
Error::InvalidPublicKey => None,
Error::InvalidDataError => None,
Error::OSRNGError(ref e) => Some(e),
}
}
}
pub const SUITE: u8 = 0x03;
#[derive(Clone, PartialEq, Eq)]
pub struct VRFProof {
Gamma: EdwardsPoint,
c: ed25519_Scalar,
s: ed25519_Scalar,
}
impl_byte_array_rusqlite_only!(VRFProof);
impl Debug for VRFProof {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", &self.to_hex())
}
}
impl Hash for VRFProof {
fn hash<H: Hasher>(&self, h: &mut H) -> () {
let bytes = self.to_bytes();
bytes.hash(h);
}
}
pub const VRF_PROOF_ENCODED_SIZE: u32 = 80;
impl VRFProof {
pub fn Gamma(&self) -> &EdwardsPoint {
&self.Gamma
}
pub fn s(&self) -> &ed25519_Scalar {
&self.s
}
pub fn c(&self) -> &ed25519_Scalar {
&self.c
}
pub fn check_c(c: &ed25519_Scalar) -> bool {
let c_bytes = c.reduce().to_bytes();
for i in 16..32 {
if c_bytes[i] != 0 {
return false;
}
}
return true;
}
pub fn empty() -> VRFProof {
VRFProof::from_slice(&[1u8; 80]).unwrap()
}
pub fn new(
Gamma: EdwardsPoint,
c: ed25519_Scalar,
s: ed25519_Scalar,
) -> Result<VRFProof, Error> {
if !VRFProof::check_c(&c) {
return Err(Error::InvalidDataError);
}
Ok(VRFProof { Gamma, c, s })
}
pub fn from_slice(bytes: &[u8]) -> Option<VRFProof> {
match bytes.len() {
80 => {
let gamma_opt = CompressedEdwardsY::from_slice(&bytes[0..32]).decompress();
if gamma_opt.is_none() {
test_debug!("Invalid Gamma");
return None;
}
let gamma = gamma_opt.unwrap();
if gamma.is_small_order() {
test_debug!("Invalid Gamma -- small order");
return None;
}
let mut c_buf = [0u8; 32];
let mut s_buf = [0u8; 32];
for i in 0..16 {
c_buf[i] = bytes[32 + i];
}
for i in 0..32 {
s_buf[i] = bytes[48 + i];
}
let c = ed25519_Scalar::from_canonical_bytes(c_buf)?;
let s = ed25519_Scalar::from_canonical_bytes(s_buf)?;
Some(VRFProof {
Gamma: gamma,
c: c,
s: s,
})
}
_ => None,
}
}
pub fn from_bytes(bytes: &Vec<u8>) -> Option<VRFProof> {
VRFProof::from_slice(&bytes[..])
}
pub fn from_hex(hex_str: &String) -> Option<VRFProof> {
match hex_bytes(hex_str) {
Ok(b) => VRFProof::from_slice(&b[..]),
Err(_) => None,
}
}
pub fn to_bytes(&self) -> [u8; 80] {
let mut c_bytes_16 = [0u8; 16];
assert!(
VRFProof::check_c(&self.c),
"FATAL ERROR: somehow constructed an invalid ECVRF proof"
);
let c_bytes = self.c.reduce().to_bytes();
c_bytes_16[0..16].copy_from_slice(&c_bytes[0..16]);
let gamma_bytes = self.Gamma.compress().to_bytes();
let s_bytes = self.s.to_bytes();
let mut ret: Vec<u8> = Vec::with_capacity(80);
ret.extend_from_slice(&gamma_bytes);
ret.extend_from_slice(&c_bytes_16);
ret.extend_from_slice(&s_bytes);
let mut proof_bytes = [0u8; 80];
proof_bytes.copy_from_slice(&ret[..]);
proof_bytes
}
pub fn to_hex(&self) -> String {
to_hex(&self.to_bytes())
}
}
impl serde::Serialize for VRFProof {
fn serialize<S: serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let inst = self.to_hex();
s.serialize_str(&inst)
}
}
impl<'de> serde::Deserialize<'de> for VRFProof {
fn deserialize<D: serde::Deserializer<'de>>(d: D) -> Result<VRFProof, D::Error> {
let inst_str = String::deserialize(d)?;
VRFProof::from_hex(&inst_str).ok_or(serde::de::Error::custom(Error::InvalidDataError))
}
}
pub struct VRF {}
impl VRF {
fn hash_to_curve(y: &VRFPublicKey, alpha: &[u8]) -> EdwardsPoint {
let mut ctr: u64 = 0;
let h: EdwardsPoint = loop {
let mut hasher = Sha512::new();
hasher.update(&[SUITE, 0x01]);
hasher.update(y.as_bytes());
hasher.update(alpha);
if ctr == 0 {
hasher.update(&[0u8]);
} else {
let ctr_bytes = ctr.to_le_bytes();
for i in 0..8 {
if ctr > 1u64 << (8 * i) {
hasher.update(&[ctr_bytes[i]]);
}
}
}
let y = CompressedEdwardsY::from_slice(&hasher.finalize()[0..32]);
if let Some(h) = y.decompress() {
break h;
}
ctr = ctr
.checked_add(1)
.expect("Too many attempts at try-and-increment hash-to-curve");
};
let ed = h.mul_by_cofactor();
ed
}
fn hash_points(
p1: &EdwardsPoint,
p2: &EdwardsPoint,
p3: &EdwardsPoint,
p4: &EdwardsPoint,
) -> [u8; 16] {
let mut hasher = Sha512::new();
let mut hash128 = [0u8; 16];
hasher.update(&[0x03, 0x02]);
hasher.update(&p1.compress().to_bytes());
hasher.update(&p2.compress().to_bytes());
hasher.update(&p3.compress().to_bytes());
hasher.update(&p4.compress().to_bytes());
hash128.copy_from_slice(&hasher.finalize()[0..16]);
hash128
}
fn expand_privkey(secret: &VRFPrivateKey) -> (VRFPublicKey, ed25519_Scalar, [u8; 32]) {
let mut hasher = Sha512::new();
let mut h = [0u8; 64];
let mut trunc_hash = [0u8; 32];
let pubkey = VRFPublicKey::from_private(secret);
let privkey_buf = secret.to_bytes();
hasher.update(&privkey_buf[0..32]);
h.copy_from_slice(&hasher.finalize()[..]);
h[0] &= 248;
h[31] &= 127;
h[31] |= 64;
let mut h_32 = [0u8; 32];
h_32.copy_from_slice(&h[0..32]);
let x_scalar_raw = ed25519_Scalar::from_bits(h_32);
let x_scalar = x_scalar_raw.reduce(); trunc_hash.copy_from_slice(&h[32..64]);
(pubkey, x_scalar, trunc_hash)
}
fn nonce_generation(trunc_hash: &[u8; 32], H_point: &EdwardsPoint) -> ed25519_Scalar {
let mut hasher = Sha512::new();
let mut k_string = [0u8; 64];
let h_string = H_point.compress().to_bytes();
hasher.update(trunc_hash);
hasher.update(&h_string);
let rs = &hasher.finalize()[..];
k_string.copy_from_slice(rs);
ed25519_Scalar::from_bytes_mod_order_wide(&k_string)
}
fn ed25519_scalar_from_hash128(hash128: &[u8; 16]) -> ed25519_Scalar {
let mut scalar_buf = [0u8; 32];
scalar_buf[0..16].copy_from_slice(hash128);
ed25519_Scalar::from_bits(scalar_buf)
}
pub fn prove(secret: &VRFPrivateKey, alpha: &[u8]) -> VRFProof {
let (Y_point, x_scalar, trunc_hash) = VRF::expand_privkey(secret);
let H_point = VRF::hash_to_curve(&Y_point, alpha);
let Gamma_point = &x_scalar * &H_point;
let k_scalar = VRF::nonce_generation(&trunc_hash, &H_point);
let kB_point = &k_scalar * &ED25519_BASEPOINT_POINT;
let kH_point = &k_scalar * &H_point;
let c_hashbuf = VRF::hash_points(&H_point, &Gamma_point, &kB_point, &kH_point);
let c_scalar = VRF::ed25519_scalar_from_hash128(&c_hashbuf);
let s_full_scalar = &k_scalar + &c_scalar * &x_scalar;
let s_scalar = s_full_scalar.reduce();
VRFProof::new(Gamma_point, c_scalar, s_scalar)
.expect("FATAL ERROR: upper-16 bytes of proof's C scalar are NOT 0")
}
pub fn verify(
Y_point: &VRFPublicKey,
proof: &VRFProof,
alpha: &Vec<u8>,
) -> Result<bool, Error> {
let H_point = VRF::hash_to_curve(Y_point, alpha);
let s_reduced = proof.s().reduce();
let Y_point_ed = CompressedEdwardsY(Y_point.to_bytes())
.decompress()
.ok_or(Error::InvalidPublicKey)?;
if proof.Gamma().is_small_order() {
return Err(Error::InvalidPublicKey);
}
let U_point = &s_reduced * &ED25519_BASEPOINT_POINT - proof.c() * Y_point_ed;
let V_point = &s_reduced * &H_point - proof.c() * proof.Gamma();
let c_prime_hashbuf = VRF::hash_points(&H_point, proof.Gamma(), &U_point, &V_point);
let c_prime = VRF::ed25519_scalar_from_hash128(&c_prime_hashbuf);
Ok(c_prime == *(proof.c()))
}
pub fn check_public_key(pubkey_bytes: &Vec<u8>) -> Option<VRFPublicKey> {
match pubkey_bytes.len() {
32 => VRFPublicKey::from_bytes(&pubkey_bytes[..]),
_ => None,
}
}
}
impl StacksMessageCodec for VRFProof {
fn consensus_serialize<W: Write>(&self, fd: &mut W) -> Result<(), CodecError> {
fd.write_all(&self.to_bytes())
.map_err(CodecError::WriteError)
}
fn consensus_deserialize<R: Read>(fd: &mut R) -> Result<VRFProof, CodecError> {
let mut bytes = [0u8; VRF_PROOF_ENCODED_SIZE as usize];
fd.read_exact(&mut bytes).map_err(CodecError::ReadError)?;
let res = VRFProof::from_slice(&bytes).ok_or(CodecError::DeserializeError(
"Failed to parse VRF proof".to_string(),
))?;
Ok(res)
}
}
pub const VRF_SEED_ENCODED_SIZE: u32 = 32;
impl_byte_array_rusqlite_only!(VRFSeed);
impl VRFSeed {
pub fn initial() -> VRFSeed {
VRFSeed::from_hex("0000000000000000000000000000000000000000000000000000000000000000")
.unwrap()
}
pub fn from_proof(proof: &VRFProof) -> VRFSeed {
let h = Sha512Trunc256Sum::from_data(&proof.to_bytes());
VRFSeed(h.0)
}
pub fn is_from_proof(&self, proof: &VRFProof) -> bool {
self.as_bytes().to_vec() == VRFSeed::from_proof(proof).as_bytes().to_vec()
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::util::hash::hex_bytes;
use curve25519_dalek::scalar::Scalar as ed25519_Scalar;
use sha2::Sha512;
use rand;
use rand::RngCore;
#[derive(Debug)]
struct VRF_Proof_Fixture {
privkey: Vec<u8>,
message: &'static str,
proof: Vec<u8>,
}
#[derive(Debug)]
struct VRF_Verify_Fixture {
pubkey: Vec<u8>,
proof: Vec<u8>,
message: &'static str,
result: bool,
}
#[derive(Debug)]
struct VRF_Proof_Codec_Fixture {
proof: Vec<u8>,
result: bool,
}
#[test]
fn test_vrf_rfc() {
let proof_fixtures = vec![
VRF_Proof_Fixture {
privkey: hex_bytes("9d61b19deffd5a60ba844af492ec2cc44449c5697b326919703bac031cae7f60").unwrap(),
message: "",
proof: hex_bytes("9275df67a68c8745c0ff97b48201ee6db447f7c93b23ae24cdc2400f52fdb08a1a6ac7ec71bf9c9c76e96ee4675ebff60625af28718501047bfd87b810c2d2139b73c23bd69de66360953a642c2a330a").unwrap()
},
VRF_Proof_Fixture {
privkey: hex_bytes("4ccd089b28ff96da9db6c346ec114e0f5b8a319f35aba624da8cf6ed4fb8a6fb").unwrap(),
message: "72",
proof: hex_bytes("84a63e74eca8fdd64e9972dcda1c6f33d03ce3cd4d333fd6cc789db12b5a7b9d03f1cb6b2bf7cd81a2a20bacf6e1c04e59f2fa16d9119c73a45a97194b504fb9a5c8cf37f6da85e03368d6882e511008").unwrap()
},
VRF_Proof_Fixture {
privkey: hex_bytes("c5aa8df43f9f837bedb7442f31dcb7b166d38535076f094b85ce3a2e0b4458f7").unwrap(),
message: "af82",
proof: hex_bytes("aca8ade9b7f03e2b149637629f95654c94fc9053c225ec21e5838f193af2b727b84ad849b0039ad38b41513fe5a66cdd2367737a84b488d62486bd2fb110b4801a46bfca770af98e059158ac563b690f").unwrap()
}
];
for proof_fixture in proof_fixtures {
let alpha = hex_bytes(&proof_fixture.message).unwrap();
let privk = VRFPrivateKey::from_bytes(&proof_fixture.privkey[..]).unwrap();
let expected_proof_bytes = &proof_fixture.proof[..];
let proof = VRF::prove(&privk, &alpha.to_vec());
let proof_bytes = proof.to_bytes();
assert_eq!(proof_bytes.to_vec(), expected_proof_bytes.to_vec());
let pubk = VRFPublicKey::from_private(&privk);
let res = VRF::verify(&pubk, &proof, &alpha.to_vec()).unwrap();
assert!(res);
}
}
#[test]
fn test_random_proof_roundtrip() {
for _i in 0..100 {
let secret_key = VRFPrivateKey::new();
let public_key = VRFPublicKey::from_private(&secret_key);
let mut rng = rand::thread_rng();
let mut msg = [0u8; 1024];
rng.fill_bytes(&mut msg);
let proof = VRF::prove(&secret_key, &msg.to_vec());
let res = VRF::verify(&public_key, &proof, &msg.to_vec()).unwrap();
assert!(res);
}
}
#[test]
fn test_proof_codec() {
let proof_fixtures = vec![
VRF_Proof_Codec_Fixture {
proof: hex_bytes("ced9804ca06ed515c632fb83ef89e9cba4acf1539a33685a1c1cb475df733a5af33288af50fe1fa1c3facd9d19cf7ad98ba7413a8d09010363ac11ae7c4110b94707ab5bdee3726792daaf2c7f4f6106").unwrap(),
result: true
},
VRF_Proof_Codec_Fixture {
proof: hex_bytes("86bfdbd03147ae8bd3e16c76c9e40fe02e6fd2d7b072dce710897d97558fd00ec027222746d07207c381621b3a7d34db29762b43b73b6af816ca64da1503d37138fbb9e73faf82e83525be00f880cf04").unwrap(),
result: true,
},
VRF_Proof_Codec_Fixture {
proof: hex_bytes("6d5af6e8d02e4c04f7ee114c0adb7ff5ed2982e7b63cc0a82ec68c9a0967abfa07bbf70e92c03fcafb9a0a779cb511c85c946853154b406cb5a37563751886ac1f14d81694cf99fb103e712aa879c20f").unwrap(),
result: true,
},
VRF_Proof_Codec_Fixture {
proof: hex_bytes("ead84ef119fc0240395448853b0f1ca54e686c1fbbc0ed1669d24d95dcdd078f5273365211c6a7f66025e1114206ba8e721d0f486b952a544ab354cdc15ffa0957a0491f659be554de21d67cb86e880f").unwrap(),
result: true,
},
VRF_Proof_Codec_Fixture {
proof: hex_bytes("94654efaef05909d40ddd4e0bb8aae8fd70780b22bb57844fb4c1d81636ed6556d9725d59ccb0975b9c70b8cb2b20d781455e44d5914d15ed7eefdc58606b085ae13aa9c2e5d03c081e81fc25f945b").unwrap(),
result: false,
},
VRF_Proof_Codec_Fixture {
proof: hex_bytes("94654efaef05909d40ddd4e0bb8aae8fd70780b22bb57844fb4c1d81636ed6556d9725d59ccb0975b9c70b8cb2b20d781455e44d5914d15ed7eefdc58606b085ae13aa9c2e5d03c081e81fc25f945b0c01").unwrap(),
result: false,
},
VRF_Proof_Codec_Fixture {
proof: hex_bytes("0000000000000000000000000000000000000000000000000000000000000000000025d59ccb0975b9c70b8cb2b20d781455e44d5914d15ed7eefdc58606b085ae13aa9c2e5d03c081e81fc25f945b0c").unwrap(),
result: false,
},
];
for proof_fixture in proof_fixtures {
let proof_res = VRFProof::from_bytes(&proof_fixture.proof);
if proof_fixture.result {
assert!(!proof_res.is_none());
assert!(proof_res.unwrap().to_bytes().to_vec() == proof_fixture.proof.to_vec());
} else {
assert!(proof_res.is_none());
}
}
}
#[test]
fn check_valid_public_key() {
let res1 = VRF::check_public_key(
&hex_bytes("a366b51292bef4edd64063d9145c617fec373bceb0758e98cd72becd84d54c7a")
.unwrap()
.to_vec(),
);
assert!(res1.is_some());
let res2 = VRF::check_public_key(
&hex_bytes("a366b51292bef4edd64063d9145c617fec373bceb0758e98cd72becd84d54c7b")
.unwrap()
.to_vec(),
);
assert!(res2.is_none());
}
}