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
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
//! Module that uses the OpenSSL library to offer Elliptic Curve Verifiable Random Function (VRF) functionality.
//! This module follows the algorithms described in [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) and [RFC6979](https://tools.ietf.org/html/rfc6979).
//!
//! In particular, it provides:
//!
//! * `ECVRF_hash_to_curve` as in the `ECVRF_hash_to_curve_try_and_increment` algorithm from [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05)
//! * `ECVRF_nonce_generation` as specified in Section 3.2 of [RFC6979](https://tools.ietf.org/html/rfc6979)
//!
//! Warning: if input data is private, information leaks in the form of timing side channels are possible.
//!
//! Currently the supported cipher suites are:
//! * _P256_SHA256_TAI_: the aforementioned algorithms with `SHA256` and the `NIST P-256` curve.
//! * _K163_SHA256_TAI_: the aforementioned algorithms with `SHA256` and the `NIST K-163` curve.
//! * _SECP256K1_SHA256_TAI_: the aforementioned algorithms with `SHA256` and the `secp256k1` curve.
//!
//! ## Documentation
//!
//! * [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05)
//! * [RFC6979](https://tools.ietf.org/html/rfc6979)
//! * [GitHub repository](https://github.com/witnet/vrf-rs)
//!
//! ## Features
//!
//! * Compute VRF proof
//! * Verify VRF proof
use std::{
fmt::{self, Debug, Formatter},
os::raw::c_ulong,
};
use hmac_sha256::HMAC;
use thiserror::Error;
use openssl::{
bn::{BigNum, BigNumContext},
ec::{EcGroup, EcPoint, PointConversionForm},
error::ErrorStack,
hash::{hash, MessageDigest},
nid::Nid,
};
use crate::VRF;
use self::utils::{append_leading_zeros, bits2int, bits2octets};
mod utils;
/// Different cipher suites for different curves/algorithms
#[allow(non_camel_case_types)]
#[derive(Debug)]
pub enum CipherSuite {
/// `NIST P-256` with `SHA256` and `ECVRF_hash_to_curve_try_and_increment`
P256_SHA256_TAI,
/// `Secp256k1` with `SHA256` and `ECVRF_hash_to_curve_try_and_increment`
SECP256K1_SHA256_TAI,
/// `NIST K-163` with `SHA256` and `ECVRF_hash_to_curve_try_and_increment`
K163_SHA256_TAI,
}
impl CipherSuite {
fn suite_string(&self) -> u8 {
match *self {
CipherSuite::P256_SHA256_TAI => 0x01,
CipherSuite::SECP256K1_SHA256_TAI => 0xFE,
CipherSuite::K163_SHA256_TAI => 0xFF,
}
}
}
/// Different errors that can be raised when proving/verifying VRFs
#[derive(Debug, Error)]
pub enum Error {
/// Error raised from `openssl::error::ErrorStack` with a specific code
#[error("Error with code {code:?}")]
CodedError { code: c_ulong },
/// The `hash_to_point()` function could not find a valid point
#[error("Hash to point function could not find a valid point")]
HashToPointError,
/// The proof length is invalid
#[error("The proof length is invalid")]
InvalidPiLength,
/// The proof is invalid
#[error("The proof is invalid")]
InvalidProof,
/// Unknown error
#[error("Unknown error")]
Unknown,
}
impl From<ErrorStack> for Error {
/// Transforms error from `openssl::error::ErrorStack` to `Error::CodedError` or `Error::Unknown`
fn from(error: ErrorStack) -> Self {
match error.errors().first().map(openssl::error::Error::code) {
Some(code) => Error::CodedError { code },
_ => Error::Unknown {},
}
}
}
/// An Elliptic Curve VRF
pub struct ECVRF {
// Bignumber arithmetic context
bn_ctx: BigNumContext,
// Ciphersuite identification
cipher_suite: CipherSuite,
// Cofactor of the curve
cofactor: u8,
// Elliptic curve group
group: EcGroup,
// Hasher structure
hasher: MessageDigest,
// The order of the curve
order: BigNum,
// Length of the order of the curve in bits
qlen: usize,
// 2n = length of a field element in bits rounded up to the nearest even integer
n: usize,
}
impl Debug for ECVRF {
fn fmt(&self, fmt: &mut Formatter) -> fmt::Result {
fmt.debug_struct("ECVRF")
.field("cipher_suite", &self.cipher_suite)
.field("cofactor", &self.cofactor)
.field("qlen", &self.qlen)
.field("n", &self.n)
.field("order", &self.order)
.finish()
}
}
impl ECVRF {
/// Factory method for creating a ECVRF structure with a context that is initialized for the provided cipher suite.
///
/// # Arguments
///
/// * `suite` - A ciphersuite identifying the curve/algorithms.
///
/// # Returns
///
/// * If successful, the ECVRF structure.
pub fn from_suite(suite: CipherSuite) -> Result<Self, Error> {
// Context for big number algebra
let mut bn_ctx = BigNumContext::new()?;
// Elliptic Curve parameters
let (group, cofactor) = match suite {
CipherSuite::P256_SHA256_TAI => {
(EcGroup::from_curve_name(Nid::X9_62_PRIME256V1)?, 0x01)
}
CipherSuite::K163_SHA256_TAI => (EcGroup::from_curve_name(Nid::SECT163K1)?, 0x02),
CipherSuite::SECP256K1_SHA256_TAI => (EcGroup::from_curve_name(Nid::SECP256K1)?, 0x01),
};
let mut order = BigNum::new()?;
group.order(&mut order, &mut bn_ctx)?;
let mut a = BigNum::new()?;
let mut b = BigNum::new()?;
let mut p = BigNum::new()?;
group.components_gfp(&mut p, &mut a, &mut b, &mut bn_ctx)?;
let n = ((p.num_bits() + (p.num_bits() % 2)) / 2) as usize;
let qlen = order.num_bits() as usize;
// Hash algorithm: `SHA256`
// (only `P256_SHA256_TAI`, `K163_SHA256_TAI` and `SECP256K1_SHA256_TAI` are currently supported)
let hasher = MessageDigest::sha256();
Ok(ECVRF {
cipher_suite: suite,
group,
bn_ctx,
order,
hasher,
n,
qlen,
cofactor,
})
}
/// Function for deriving a public key given a secret key point.
/// Returns an `EcPoint` with the corresponding public key.
///
/// # Arguments
///
/// * `secret_key` - A `BigNum` referencing the secret key.
///
/// # Returns
///
/// * If successful, an `EcPoint` representing the public key.
fn derive_public_key_point(&mut self, secret_key: &BigNum) -> Result<EcPoint, Error> {
let mut point = EcPoint::new(self.group.as_ref())?;
// secret_key = point*generator
point.mul_generator(&self.group, secret_key, &self.bn_ctx)?;
Ok(point)
}
/// Function for deriving a public key given a secret key point.
/// Returns a vector of octets with the corresponding public key.
///
/// # Arguments
///
/// * `secret_key` - A `BigNum` referencing the secret key.
///
/// # Returns
///
/// * If successful, a `Vec<u8>` representing the public key.
pub fn derive_public_key(&mut self, secret_key: &[u8]) -> Result<Vec<u8>, Error> {
let secret_key_bn = BigNum::from_slice(secret_key)?;
let point = self.derive_public_key_point(&secret_key_bn)?;
let bytes = point.to_bytes(
&self.group,
PointConversionForm::COMPRESSED,
&mut self.bn_ctx,
)?;
Ok(bytes)
}
/// Generates a nonce deterministically by following the algorithm described in the [RFC6979](https://tools.ietf.org/html/rfc6979)
/// (section 3.2. __Generation of k__).
///
/// # Arguments
///
/// * `secret_key` - A `BigNum` representing the secret key.
/// * `data` - A slice of octets (message).
///
/// # Returns
///
/// * If successful, the `BigNum` representing the nonce.
fn generate_nonce(&mut self, secret_key: &BigNum, data: &[u8]) -> Result<BigNum, Error> {
// Bits to octets from data - bits2octets(h1)
// We follow the new VRF-draft-05 in which the input is hashed`
let data_hash = hash(self.hasher, data)?;
let data_trunc = bits2octets(&data_hash, self.qlen, &self.order, &mut self.bn_ctx)?;
let padded_data_trunc = append_leading_zeros(&data_trunc, self.qlen);
// Bytes to octets from secret key - int2octects(x)
// Left padding is required for inserting leading zeros
let padded_secret_key_bytes: Vec<u8> =
append_leading_zeros(&secret_key.to_vec(), self.qlen);
// Init `V` & `K`
// `K = HMAC_K(V || 0x00 || int2octects(secret_key) || bits2octects(data))`
let mut v = [0x01; 32];
let mut k = [0x00; 32];
// First 2 rounds defined by specification
for prefix in 0..2u8 {
k = HMAC::mac(
[
&v[..],
&[prefix],
&padded_secret_key_bytes[..],
&padded_data_trunc[..],
]
.concat()
.as_slice(),
k,
);
v = HMAC::mac(v, k);
}
// Loop until valid `BigNum` extracted from `V` is found
loop {
v = HMAC::mac(v, k);
let ret_bn = bits2int(&v, self.qlen)?;
if ret_bn > BigNum::from_u32(0)? && ret_bn < self.order {
return Ok(ret_bn);
}
k = HMAC::mac([&v[..], &[0x00]].concat().as_slice(), k);
v = HMAC::mac(v, k);
}
}
/// Function to convert a `Hash(PK|DATA)` to a point in the curve as stated in [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05)
/// (section 5.4.1.1).
///
/// # Arguments
///
/// * `public_key` - An `EcPoint` referencing the public key.
/// * `alpha` - A slice containing the input data.
///
/// # Returns
///
/// * If successful, an `EcPoint` representing the hashed point.
fn hash_to_try_and_increment(
&mut self,
public_key: &EcPoint,
alpha: &[u8],
) -> Result<EcPoint, Error> {
let mut c = 0..255;
let pk_bytes = public_key.to_bytes(
&self.group,
PointConversionForm::COMPRESSED,
&mut self.bn_ctx,
)?;
let cipher = [self.cipher_suite.suite_string(), 0x01];
let mut v = [&cipher[..], &pk_bytes[..], alpha, &[0x00]].concat();
let position = v.len() - 1;
// `Hash(cipher||PK||data)`
let mut point = c.find_map(|ctr| {
v[position] = ctr;
let attempted_hash = hash(self.hasher, &v);
// Check validity of `H`
match attempted_hash {
Ok(attempted_hash) => self.arbitrary_string_to_point(&attempted_hash).ok(),
_ => None,
}
});
if let Some(pt) = point.as_mut() {
let mut new_pt = EcPoint::new(self.group.as_ref())?;
new_pt.mul(
self.group.as_ref(),
pt,
BigNum::from_slice(&[self.cofactor])?.as_ref(),
&self.bn_ctx,
)?;
*pt = new_pt;
}
// Return error if no valid point was found
point.ok_or(Error::HashToPointError)
}
/// Function to convert an arbitrary string to a point in the curve as specified in VRF-draft-05
/// (section 5.5).
///
/// # Arguments
///
/// * `data` - A slice representing the data to be converted to a point.
///
/// # Returns
///
/// * If successful, an `EcPoint` representing the converted point.
fn arbitrary_string_to_point(&mut self, data: &[u8]) -> Result<EcPoint, Error> {
let mut v = vec![0x02];
v.extend(data);
let point = EcPoint::from_bytes(&self.group, &v, &mut self.bn_ctx)?;
Ok(point)
}
/// Function to hash a certain set of points as specified in [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05)
/// (section 5.4.3).
///
/// # Arguments
///
/// * `points` - A reference to an array containing the points that need to be hashed.
///
/// # Returns
///
/// * If successful, a `BigNum` representing the hash of the points, truncated to length `n`.
fn hash_points(&mut self, points: &[&EcPoint]) -> Result<BigNum, Error> {
// point_bytes = [P1||P2||...||Pn]
let point_bytes: Result<Vec<u8>, Error> = points.iter().try_fold(
vec![self.cipher_suite.suite_string(), 0x02],
|mut acc, point| {
let bytes: Vec<u8> = point.to_bytes(
&self.group,
PointConversionForm::COMPRESSED,
&mut self.bn_ctx,
)?;
acc.extend(bytes);
Ok(acc)
},
);
let to_be_hashed = point_bytes?;
// H(point_bytes)
let mut hash = hash(self.hasher, &to_be_hashed).map(|hash| hash.to_vec())?;
hash.truncate(self.n / 8);
let result = BigNum::from_slice(hash.as_slice())?;
Ok(result)
}
/// Decodes a VRF proof by extracting the gamma (as `EcPoint`), and parameters `c` and `s`
/// (as `BigNum`).
///
/// # Arguments
///
/// * `pi` - A slice of octets representing the VRF proof.
///
/// # Returns
///
/// * A tuple containing the gamma `EcPoint`, and `BigNum` parameters `c` and `s`.
fn decode_proof(&mut self, pi: &[u8]) -> Result<(EcPoint, BigNum, BigNum), Error> {
let gamma_oct = if self.qlen % 8 > 0 {
self.qlen / 8 + 2
} else {
self.qlen / 8 + 1
};
let c_oct = if self.n % 8 > 0 {
self.n / 8 + 1
} else {
self.n / 8
};
// Expected size of proof: len(pi) == len(gamma) + len(c) + len(s)
// len(s) == 2 * len(c), so len(pi) == len(gamma) + 3 * len(c)
if pi.len() != gamma_oct + c_oct * 3 {
return Err(Error::InvalidPiLength);
}
let gamma_point = EcPoint::from_bytes(&self.group, &pi[0..gamma_oct], &mut self.bn_ctx)?;
let c = BigNum::from_slice(&pi[gamma_oct..gamma_oct + c_oct])?;
let s = BigNum::from_slice(&pi[gamma_oct + c_oct..])?;
Ok((gamma_point, c, s))
}
/// Computes the VRF hash output as result of the digest of a ciphersuite-dependent prefix
/// concatenated with the gamma point ([VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05), section 5.2).
///
/// # Arguments
///
/// * `gamma` - An `EcPoint` representing the VRF gamma.
///
/// # Returns
///
/// * A vector of octets with the VRF hash output.
fn gamma_to_hash(&mut self, gamma: &EcPoint) -> Result<Vec<u8>, Error> {
// Multiply gamma with cofactor
let mut gamma_cof = EcPoint::new(self.group.as_ref())?;
gamma_cof.mul(
self.group.as_ref(),
gamma,
BigNum::from_slice(&[self.cofactor])?.as_ref(),
&self.bn_ctx,
)?;
let gamma_string = gamma_cof.to_bytes(
&self.group,
PointConversionForm::COMPRESSED,
&mut self.bn_ctx,
)?;
let hash = hash(
self.hasher,
&[
&[self.cipher_suite.suite_string()],
&[0x03],
&gamma_string[..],
]
.concat(),
)
.map(|hash| hash.to_vec())?;
Ok(hash)
}
/// Computes the VRF hash output as result of the digest of a ciphersuite-dependent prefix
/// concatenated with the gamma point ([VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05), section 5.2).
///
/// # Arguments
///
/// * `pi` - A slice representing the VRF proof in octets.
///
/// # Returns
///
/// * If successful, a vector of octets with the VRF hash output.
pub fn proof_to_hash(&mut self, pi: &[u8]) -> Result<Vec<u8>, Error> {
let (gamma_point, _, _) = self.decode_proof(pi)?;
self.gamma_to_hash(&gamma_point)
}
}
/// VRFs are objects capable of generating and verifying proofs.
impl VRF<&[u8], &[u8]> for ECVRF {
type Error = Error;
/// Generates proof from a secret key and message as specified in the
/// [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section 5.1).
///
/// # Arguments
///
/// * `x` - A slice representing the secret key in octets.
/// * `alpha` - A slice representing the message in octets.
///
/// # Returns
///
/// * If successful, a vector of octets representing the proof of the VRF.
fn prove(&mut self, x: &[u8], alpha: &[u8]) -> Result<Vec<u8>, Error> {
// Step 1: derive public key from secret key
// `Y = x * B`
//TODO: validate secret key length?
let secret_key = BigNum::from_slice(x)?;
let public_key_point = self.derive_public_key_point(&secret_key)?;
// Step 2: Hash to curve
let h_point = self.hash_to_try_and_increment(&public_key_point, alpha)?;
// Step 3: point to string
let h_string = h_point.to_bytes(
&self.group,
PointConversionForm::COMPRESSED,
&mut self.bn_ctx,
)?;
// Step 4: Gamma = x * H
let mut gamma_point = EcPoint::new(self.group.as_ref())?;
gamma_point.mul(self.group.as_ref(), &h_point, &secret_key, &self.bn_ctx)?;
// Step 5: nonce
let k = self.generate_nonce(&secret_key, &h_string)?;
// Step 6: c = hash points(...)
let mut u_point = EcPoint::new(self.group.as_ref())?;
let mut v_point = EcPoint::new(self.group.as_ref())?;
u_point.mul_generator(self.group.as_ref(), &k, &self.bn_ctx)?;
v_point.mul(self.group.as_ref(), &h_point, &k, &self.bn_ctx)?;
let c = self.hash_points(&[&h_point, &gamma_point, &u_point, &v_point])?;
// Step 7: s = (k + c*x) mod q
let s = &(&k + &(&c * &secret_key)) % &self.order;
// Step 8: encode (gamma, c, s)
let gamma_string = gamma_point.to_bytes(
&self.group,
PointConversionForm::COMPRESSED,
&mut self.bn_ctx,
)?;
// Fixed size; len(c) must be n and len(s)=2n
let c_string = append_leading_zeros(&c.to_vec(), self.n);
let s_string = append_leading_zeros(&s.to_vec(), self.qlen);
// proof = [Gamma_string||c_string||s_string]
let proof = [&gamma_string[..], &c_string, &s_string].concat();
Ok(proof)
}
/// Verifies the provided VRF proof and computes the VRF hash output as specified in
/// [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section 5.3).
///
/// # Arguments
///
/// * `y` - A slice representing the public key in octets.
/// * `pi` - A slice of octets representing the VRF proof.
///
/// # Returns
///
/// * If successful, a vector of octets with the VRF hash output.
fn verify(&mut self, y: &[u8], pi: &[u8], alpha: &[u8]) -> Result<Vec<u8>, Error> {
// Step 1: decode proof
let (gamma_point, c, s) = self.decode_proof(pi)?;
// Step 2: hash to curve
let public_key_point = EcPoint::from_bytes(&self.group, y, &mut self.bn_ctx)?;
let h_point = self.hash_to_try_and_increment(&public_key_point, alpha)?;
// Step 3: U = sB -cY
let mut s_b = EcPoint::new(self.group.as_ref())?;
let mut c_y = EcPoint::new(self.group.as_ref())?;
let mut u_point = EcPoint::new(self.group.as_ref())?;
s_b.mul_generator(&self.group, &s, &self.bn_ctx)?;
c_y.mul(&self.group, &public_key_point, &c, &self.bn_ctx)?;
c_y.invert(&self.group, &self.bn_ctx)?;
u_point.add(&self.group, &s_b, &c_y, &mut self.bn_ctx)?;
// Step 4: V = sH -cGamma
let mut s_h = EcPoint::new(self.group.as_ref())?;
let mut c_gamma = EcPoint::new(self.group.as_ref())?;
let mut v_point = EcPoint::new(self.group.as_ref())?;
s_h.mul(&self.group, &h_point, &s, &self.bn_ctx)?;
c_gamma.mul(&self.group, &gamma_point, &c, &self.bn_ctx)?;
c_gamma.invert(&self.group, &self.bn_ctx)?;
v_point.add(&self.group, &s_h, &c_gamma, &mut self.bn_ctx)?;
// Step 5: hash points(...)
let derived_c = self.hash_points(&[&h_point, &gamma_point, &u_point, &v_point])?;
// Step 6: Check validity
if !derived_c.eq(&c) {
return Err(Error::InvalidProof);
}
let beta = self.gamma_to_hash(&gamma_point)?;
Ok(beta)
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_derive_public_key() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
let secret_key = BigNum::from_slice(&[0x01]).unwrap();
let public_key = vrf.derive_public_key_point(&secret_key).unwrap();
let public_key_bytes = public_key
.to_bytes(&vrf.group, PointConversionForm::COMPRESSED, &mut vrf.bn_ctx)
.unwrap();
let expected_point_bytes = vec![
0x03, 0x6B, 0x17, 0xD1, 0xF2, 0xE1, 0x2C, 0x42, 0x47, 0xF8, 0xBC, 0xE6, 0xE5, 0x63,
0xA4, 0x40, 0xF2, 0x77, 0x03, 0x7D, 0x81, 0x2D, 0xEB, 0x33, 0xA0, 0xF4, 0xA1, 0x39,
0x45, 0xD8, 0x98, 0xC2, 0x96,
];
assert_eq!(public_key_bytes, expected_point_bytes);
}
/// Test vector for `P256-SHA256-TAI` cipher suite
/// ASCII: "sample"
/// Source: [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section A.1)
#[test]
fn test_prove_p256_sha256_tai_1() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
// Secret Key (labelled as x)
let x = hex::decode("c9afa9d845ba75166b5c215767b1d6934e50c3db36e89b127b8a622b120f6721")
.unwrap();
// Data: ASCII "sample"
let alpha = hex::decode("73616d706c65").unwrap();
let pi = vrf.prove(&x, &alpha).unwrap();
let expected_pi = hex::decode("029bdca4cc39e57d97e2f42f88bcf0ecb1120fb67eb408a856050dbfbcbf57c524347fc46ccd87843ec0a9fdc090a407c6fbae8ac1480e240c58854897eabbc3a7bb61b201059f89186e7175af796d65e7").unwrap();
assert_eq!(pi, expected_pi);
}
/// Test vector for `P256-SHA256-TAI` cipher suite
/// ASCII: "sample"
/// Source: [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section A.1)
#[test]
fn test_verify_p256_sha256_tai_1() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
// Public Key (labelled as y)
let y = hex::decode("0360fed4ba255a9d31c961eb74c6356d68c049b8923b61fa6ce669622e60f29fb6")
.unwrap();
// VRF Proof
let pi = hex::decode("029bdca4cc39e57d97e2f42f88bcf0ecb1120fb67eb408a856050dbfbcbf57c524347fc46ccd87843ec0a9fdc090a407c6fbae8ac1480e240c58854897eabbc3a7bb61b201059f89186e7175af796d65e7").unwrap();
// Data: ASCII "sample"
let alpha = hex::decode("73616d706c65").unwrap();
let beta = vrf.verify(&y, &pi, &alpha).unwrap();
let expected_beta =
hex::decode("59ca3801ad3e981a88e36880a3aee1df38a0472d5be52d6e39663ea0314e594c")
.unwrap();
assert_eq!(beta, expected_beta);
}
/// Test vector for `P256-SHA256-TAI` cipher suite
/// ASCII: "test"
/// Source: [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section A.1)
#[test]
fn test_prove_p256_sha256_tai_2() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
// Secret Key (labelled as x)
let x = hex::decode("c9afa9d845ba75166b5c215767b1d6934e50c3db36e89b127b8a622b120f6721")
.unwrap();
// Data: ASCII "sample"
let alpha = hex::decode("74657374").unwrap();
let pi = vrf.prove(&x, &alpha).unwrap();
let expected_pi = hex::decode("03873a1cce2ca197e466cc116bca7b1156fff599be67ea40b17256c4f34ba2549c94ffd2b31588b5fe034fd92c87de5b520b12084da6c4ab63080a7c5467094a1ee84b80b59aca54bba2e2baa0d108191b").unwrap();
assert_eq!(pi, expected_pi);
}
/// Test vector for `P256-SHA256-TAI` cipher suite
/// ASCII: "test"
/// Source: [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section A.1)
#[test]
fn test_verify_p256_sha256_tai_2() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
// Public Key (labelled as y)
let y = hex::decode("0360fed4ba255a9d31c961eb74c6356d68c049b8923b61fa6ce669622e60f29fb6")
.unwrap();
// VRF Proof
let pi = hex::decode("03873a1cce2ca197e466cc116bca7b1156fff599be67ea40b17256c4f34ba2549c94ffd2b31588b5fe034fd92c87de5b520b12084da6c4ab63080a7c5467094a1ee84b80b59aca54bba2e2baa0d108191b").unwrap();
// Data: ASCII "sample"
let alpha = hex::decode("74657374").unwrap();
let beta = vrf.verify(&y, &pi, &alpha).unwrap();
let expected_beta =
hex::decode("dc85c20f95100626eddc90173ab58d5e4f837bb047fb2f72e9a408feae5bc6c1")
.unwrap();
assert_eq!(beta, expected_beta);
}
/// Test vector for `P256-SHA256-TAI` cipher suite
/// ASCII: "Example of ECDSA with ansip256r1 and SHA-256"
/// Source: [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section A.1)
#[test]
fn test_prove_p256_sha256_tai_3() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
// Secret Key (labelled as x)
let x = hex::decode("2ca1411a41b17b24cc8c3b089cfd033f1920202a6c0de8abb97df1498d50d2c8")
.unwrap();
// Data to be hashed: ASCII "sample
let alpha = hex::decode("4578616d706c65206f66204543445341207769746820616e736970323536723120616e64205348412d323536").unwrap();
let expected_pi = hex::decode("02abe3ce3b3aa2ab3c6855a7e729517ebfab6901c2fd228f6fa066f15ebc9b9d415a680736f7c33f6c796e367f7b2f467026495907affb124be9711cf0e2d05722d3a33e11d0c5bf932b8f0c5ed1981b64").unwrap();
let pi = vrf.prove(&x, &alpha).unwrap();
assert_eq!(pi, expected_pi);
}
/// Test vector for `P256-SHA256-TAI` cipher suite
/// ASCII: "Example of ECDSA with ansip256r1 and SHA-256"
/// Source: [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section A.1)
#[test]
fn test_verify_p256_sha256_tai_3() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
// Public Key (labelled as y)
let y = hex::decode("03596375e6ce57e0f20294fc46bdfcfd19a39f8161b58695b3ec5b3d16427c274d")
.unwrap();
// VRF Proof
let pi = hex::decode("02abe3ce3b3aa2ab3c6855a7e729517ebfab6901c2fd228f6fa066f15ebc9b9d415a680736f7c33f6c796e367f7b2f467026495907affb124be9711cf0e2d05722d3a33e11d0c5bf932b8f0c5ed1981b64").unwrap();
// Data: ASCII "sample"
let alpha = hex::decode("4578616d706c65206f66204543445341207769746820616e736970323536723120616e64205348412d323536").unwrap();
let beta = vrf.verify(&y, &pi, &alpha).unwrap();
let expected_beta =
hex::decode("e880bde34ac5263b2ce5c04626870be2cbff1edcdadabd7d4cb7cbc696467168")
.unwrap();
assert_eq!(beta, expected_beta);
}
/// Test vector for `P256-SHA256-TAI` cipher suite
/// ASCII: "sample"
/// Source: [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section A.1)
#[test]
fn test_hash_to_try_and_increment_1() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
// Public key
let public_key_hex =
hex::decode("0360fed4ba255a9d31c961eb74c6356d68c049b8923b61fa6ce669622e60f29fb6")
.unwrap();
let public_key = EcPoint::from_bytes(&vrf.group, &public_key_hex, &mut vrf.bn_ctx).unwrap();
// Data to be hashed with TAI (ASCII "sample")
let data = hex::decode("73616d706c65").unwrap();
let hash = vrf.hash_to_try_and_increment(&public_key, &data).unwrap();
let hash_bytes = hash
.to_bytes(&vrf.group, PointConversionForm::COMPRESSED, &mut vrf.bn_ctx)
.unwrap();
let expected_hash =
hex::decode("02e2e1ab1b9f5a8a68fa4aad597e7493095648d3473b213bba120fe42d1a595f3e")
.unwrap();
assert_eq!(hash_bytes, expected_hash);
}
/// Test vector for `P256-SHA256-TAI` cipher suite
/// ASCII: "test"
/// Source: [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section A.1)
#[test]
fn test_hash_to_try_and_increment_2() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
// Public key
let public_key_hex =
hex::decode("03596375e6ce57e0f20294fc46bdfcfd19a39f8161b58695b3ec5b3d16427c274d")
.unwrap();
let public_key = EcPoint::from_bytes(&vrf.group, &public_key_hex, &mut vrf.bn_ctx).unwrap();
// Data to be hashed with TAI (ASCII "sample")
let data = hex::decode("4578616d706c65206f66204543445341207769746820616e736970323536723120616e64205348412d323536").unwrap();
let hash = vrf.hash_to_try_and_increment(&public_key, &data).unwrap();
let hash_bytes = hash
.to_bytes(&vrf.group, PointConversionForm::COMPRESSED, &mut vrf.bn_ctx)
.unwrap();
let expected_hash =
hex::decode("02141e41d4d55802b0e3adaba114c81137d95fd3869b6b385d4487b1130126648d")
.unwrap();
assert_eq!(hash_bytes, expected_hash);
}
/// Test vector for `K-163` curve
/// Source: [RFC6979](https://tools.ietf.org/html/rfc6979) (section A.1)
#[test]
fn test_generate_nonce_k163() {
let mut vrf = ECVRF::from_suite(CipherSuite::K163_SHA256_TAI).unwrap();
let mut ord = BigNum::new().unwrap();
vrf.group.order(&mut ord, &mut vrf.bn_ctx).unwrap();
// Secret Key (labelled as x)
let sk = hex::decode("009A4D6792295A7F730FC3F2B49CBC0F62E862272F").unwrap();
let sk_bn = BigNum::from_slice(&sk).unwrap();
// Hashed input message (labelled as h1)
let data = hex::decode("73616d706c65").unwrap();
// Nonce generation
let nonce = vrf.generate_nonce(&sk_bn, &data).unwrap();
// Expected result/nonce (labelled as K or T)
let expected_nonce = hex::decode("023AF4074C90A02B3FE61D286D5C87F425E6BDD81B").unwrap();
assert_eq!(nonce.to_vec(), expected_nonce);
}
/// Test vector for `P-256` curve with `SHA-256`
/// Message: sample
/// Source: [RFC6979](https://tools.ietf.org/html/rfc6979) (section A.2.5)
#[test]
fn test_generate_nonce_p256_1() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
let mut ord = BigNum::new().unwrap();
vrf.group.order(&mut ord, &mut vrf.bn_ctx).unwrap();
// Secret Key (labelled as x)
let sk = hex::decode("c9afa9d845ba75166b5c215767b1d6934e50c3db36e89b127b8a622b120f6721")
.unwrap();
let sk_bn = BigNum::from_slice(&sk).unwrap();
// Data: ASCII "sample"
let data = hex::decode("73616d706c65").unwrap();
// Nonce generation
let nonce = vrf.generate_nonce(&sk_bn, &data).unwrap();
// Expected result/nonce (labelled as K or T)
let expected_nonce =
hex::decode("A6E3C57DD01ABE90086538398355DD4C3B17AA873382B0F24D6129493D8AAD60")
.unwrap();
assert_eq!(nonce.to_vec(), expected_nonce);
}
/// Test vector for `P-256` curve with `SHA-256`
/// Message: test
/// Source: [RFC6979](https://tools.ietf.org/html/rfc6979) (section A.2.5)
#[test]
fn test_generate_nonce_p256_2() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
let mut ord = BigNum::new().unwrap();
vrf.group.order(&mut ord, &mut vrf.bn_ctx).unwrap();
// Secret Key (labelled as x)
let sk = hex::decode("c9afa9d845ba75166b5c215767b1d6934e50c3db36e89b127b8a622b120f6721")
.unwrap();
let sk_bn = BigNum::from_slice(&sk).unwrap();
// Data: ASCII "test"
let data = hex::decode("74657374").unwrap();
// Nonce generation
let nonce = vrf.generate_nonce(&sk_bn, &data).unwrap();
// Expected result/nonce (labelled as K or T)
let expected_nonce =
hex::decode("D16B6AE827F17175E040871A1C7EC3500192C4C92677336EC2537ACAEE0008E0")
.unwrap();
assert_eq!(nonce.to_vec(), expected_nonce);
}
/// Test vector for `P256-SHA256-TAI` cipher suite
/// ASCII: "sample"
/// Source: [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section A.1)
#[test]
fn test_generate_nonce_p256_3() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
let mut ord = BigNum::new().unwrap();
vrf.group.order(&mut ord, &mut vrf.bn_ctx).unwrap();
// Secret Key (labelled as x)
let sk = hex::decode("c9afa9d845ba75166b5c215767b1d6934e50c3db36e89b127b8a622b120f6721")
.unwrap();
let sk_bn = BigNum::from_slice(&sk).unwrap();
// Hashed input message (labelled as h1)
let data =
hex::decode("02e2e1ab1b9f5a8a68fa4aad597e7493095648d3473b213bba120fe42d1a595f3e")
.unwrap();
// Nonce generation
let nonce = vrf.generate_nonce(&sk_bn, &data).unwrap();
// Expected result/nonce (labelled as K or T)
let expected_nonce =
hex::decode("b7de5757b28c349da738409dfba70763ace31a6b15be8216991715fbc833e5fa")
.unwrap();
assert_eq!(nonce.to_vec(), expected_nonce);
}
/// Test vector for `P256-SHA256-TAI` cipher suite
/// ASCII: "test"
/// Source: [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section A.1)
#[test]
fn test_generate_nonce_p256_4() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
let mut ord = BigNum::new().unwrap();
vrf.group.order(&mut ord, &mut vrf.bn_ctx).unwrap();
// Secret Key (labelled as x)
let sk = hex::decode("c9afa9d845ba75166b5c215767b1d6934e50c3db36e89b127b8a622b120f6721")
.unwrap();
let sk_bn = BigNum::from_slice(&sk).unwrap();
// Hashed input message (labelled as h1)
let data =
hex::decode("02ca565721155f9fd596f1c529c7af15dad671ab30c76713889e3d45b767ff6433")
.unwrap();
// Nonce generation
let nonce = vrf.generate_nonce(&sk_bn, &data).unwrap();
// Expected result/nonce (labelled as K or T)
let expected_nonce =
hex::decode("c3c4f385523b814e1794f22ad1679c952e83bff78583c85eb5c2f6ea6eee2e7d")
.unwrap();
assert_eq!(nonce.to_vec(), expected_nonce);
}
/// Test vector for `P256-SHA256-TAI` cipher suite
/// ASCII: "Example of ECDSA with ansip256r1 and SHA-256"
/// Source: [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section A.1)
#[test]
fn test_generate_nonce_p256_5() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
let mut ord = BigNum::new().unwrap();
vrf.group.order(&mut ord, &mut vrf.bn_ctx).unwrap();
// Secret Key (labelled as x)
let sk = hex::decode("2ca1411a41b17b24cc8c3b089cfd033f1920202a6c0de8abb97df1498d50d2c8")
.unwrap();
let sk_bn = BigNum::from_slice(&sk).unwrap();
// Hashed input message (labelled as h1)
let data =
hex::decode("02141e41d4d55802b0e3adaba114c81137d95fd3869b6b385d4487b1130126648d")
.unwrap();
// Nonce generation
let nonce = vrf.generate_nonce(&sk_bn, &data).unwrap();
// Expected result/nonce (labelled as K or T)
let expected_nonce =
hex::decode("6ac8f1efa102bdcdcc8db99b755d39bc995491e3f9dea076add1905a92779610")
.unwrap();
assert_eq!(nonce.to_vec(), expected_nonce);
}
/// Test vector for `P256-SHA256-TAI` cipher suite
/// ASCII: "sample"
/// Source: [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section A.1)
#[test]
fn test_hash_points() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
// Test input data
let hash_hex =
hex::decode("02e2e1ab1b9f5a8a68fa4aad597e7493095648d3473b213bba120fe42d1a595f3e")
.unwrap();
let pi_hex = hex::decode("029bdca4cc39e57d97e2f42f88bcf0ecb1120fb67eb408a856050dbfbcbf57c524347fc46ccd87843ec0a9fdc090a407c6fbae8ac1480e240c58854897eabbc3a7bb61b201059f89186e7175af796d65e7").unwrap();
// Compute all required points (gamma, u, v)
let hash_point = EcPoint::from_bytes(&vrf.group, &hash_hex, &mut vrf.bn_ctx).unwrap();
let mut gamma_hex = pi_hex.clone();
let c_s_hex = gamma_hex.split_off(33);
let gamma_point = EcPoint::from_bytes(&vrf.group, &gamma_hex, &mut vrf.bn_ctx).unwrap();
let u_hex =
hex::decode("030286d82c95d54feef4d39c000f8659a5ce00a5f71d3a888bd1b8e8bf07449a50")
.unwrap();
let u_point = EcPoint::from_bytes(&vrf.group, &u_hex, &mut vrf.bn_ctx).unwrap();
let v_hex =
hex::decode("03e4258b4a5f772ed29830050712fa09ea8840715493f78e5aaaf7b27248efc216")
.unwrap();
let v_point = EcPoint::from_bytes(&vrf.group, &v_hex, &mut vrf.bn_ctx).unwrap();
let computed_c = vrf
.hash_points(&[&hash_point, &gamma_point, &u_point, &v_point])
.unwrap();
let mut expected_c = c_s_hex.clone();
expected_c.truncate(16);
assert_eq!(computed_c.to_vec(), expected_c);
}
/// Test vector for `P256-SHA256-TAI` cipher suite
/// ASCII: "sample"
/// Source: [VRF-draft-05](https://tools.ietf.org/pdf/draft-irtf-cfrg-vrf-05) (section A.1)
#[test]
fn test_decode_proof() {
let mut vrf = ECVRF::from_suite(CipherSuite::P256_SHA256_TAI).unwrap();
let pi_hex = hex::decode("029bdca4cc39e57d97e2f42f88bcf0ecb1120fb67eb408a856050dbfbcbf57c524347fc46ccd87843ec0a9fdc090a407c6fbae8ac1480e240c58854897eabbc3a7bb61b201059f89186e7175af796d65e7")
.unwrap();
let (derived_gamma, derived_c, _) = vrf.decode_proof(&pi_hex).unwrap();
// Expected values
let mut gamma_hex = pi_hex.clone();
let c_s_hex = gamma_hex.split_off(33);
let mut c_hex = c_s_hex.clone();
c_hex.truncate(16);
let expected_gamma = EcPoint::from_bytes(&vrf.group, &gamma_hex, &mut vrf.bn_ctx).unwrap();
let expected_c = BigNum::from_slice(c_hex.as_slice()).unwrap();
assert!(derived_c.eq(&expected_c));
assert!(expected_gamma
.eq(&vrf.group, &derived_gamma, &mut vrf.bn_ctx)
.unwrap());
}
/// Test for `SECP256K1-SHA256-TAI` cipher suite
/// ASCII: "sample"
#[test]
fn test_prove_secp256k1_sha256_tai() {
let mut vrf = ECVRF::from_suite(CipherSuite::SECP256K1_SHA256_TAI).unwrap();
// Secret Key (labelled as x)
let x = hex::decode("c9afa9d845ba75166b5c215767b1d6934e50c3db36e89b127b8a622b120f6721")
.unwrap();
// Data: ASCII "sample"
let alpha = hex::decode("73616d706c65").unwrap();
let pi = vrf.prove(&x, &alpha).unwrap();
let expected_pi = hex::decode("031f4dbca087a1972d04a07a779b7df1caa99e0f5db2aa21f3aecc4f9e10e85d08748c9fbe6b95d17359707bfb8e8ab0c93ba0c515333adcb8b64f372c535e115ccf66ebf5abe6fadb01b5efb37c0a0ec9").unwrap();
assert_eq!(pi, expected_pi);
}
/// Test for `SECP256K1-SHA256-TAI` cipher suite
/// ASCII: "sample"
#[test]
fn test_verify_secp256k1_sha256_tai() {
let mut vrf = ECVRF::from_suite(CipherSuite::SECP256K1_SHA256_TAI).unwrap();
// Public Key (labelled as y)
let y = hex::decode("032c8c31fc9f990c6b55e3865a184a4ce50e09481f2eaeb3e60ec1cea13a6ae645")
.unwrap();
// Data: ASCII "sample"
let alpha = hex::decode("73616d706c65").unwrap();
// VRF proof
let pi = hex::decode("031f4dbca087a1972d04a07a779b7df1caa99e0f5db2aa21f3aecc4f9e10e85d0814faa89697b482daa377fb6b4a8b0191a65d34a6d90a8a2461e5db9205d4cf0bb4b2c31b5ef6997a585a9f1a72517b6f").unwrap();
let beta = vrf.verify(&y, &pi, &alpha).unwrap();
let expected_beta =
hex::decode("612065e309e937ef46c2ef04d5886b9c6efd2991ac484ec64a9b014366fc5d81")
.unwrap();
assert_eq!(beta, expected_beta);
}
/// Test for false positives in verification:
/// Verify should fail if the message has changed.
#[test]
fn test_verify_secp256k1_sha256_tai_bad_message() {
let mut vrf = ECVRF::from_suite(CipherSuite::SECP256K1_SHA256_TAI).unwrap();
// Public Key (labelled as y)
let y = hex::decode("032c8c31fc9f990c6b55e3865a184a4ce50e09481f2eaeb3e60ec1cea13a6ae645")
.unwrap();
// VRF proof
let pi = hex::decode("031f4dbca087a1972d04a07a779b7df1caa99e0f5db2aa21f3aecc4f9e10e85d0800851b42ee92f76d98c1f19e4a1e855526b20afe0dd6eb232a493adc107eb2b0f1").unwrap();
// Verify the proof with a different message will fail
// The original message was "sample"
let alpha2 = b"notsample".to_vec();
assert!(vrf.verify(&y, &pi, &alpha2).is_err());
}
/// Test for malformed proof:
/// Verify should fail and the program should not panic.
#[test]
fn test_verify_secp256k1_sha256_tai_malformed_proof() {
let mut vrf = ECVRF::from_suite(CipherSuite::SECP256K1_SHA256_TAI).unwrap();
// Public Key (labelled as y)
let y = hex::decode("032c8c31fc9f990c6b55e3865a184a4ce50e09481f2eaeb3e60ec1cea13a6ae645")
.unwrap();
// VRF proof
let pi = hex::decode("00000000000000000000000000000000").unwrap();
let alpha = b"sample".to_vec();
assert!(vrf.verify(&y, &pi, &alpha).is_err());
}
}