File tree 2 files changed +2
-3
lines changed
ff_derive/tests/programs/examples
p256/tests/programs/examples
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,9 @@ openvm::init!("openvm_init_full_limbs.rs");
24
24
// Test that random masking does not overflow
25
25
fn main ( ) {
26
26
use ff:: Field ;
27
- use rand:: rngs:: OsRng ;
28
27
29
28
// randomness is not supported in OpenVM
29
+ // use rand::rngs::OsRng;
30
30
// let _ = F384p::random(OsRng);
31
31
32
32
test ( F384p :: ZERO ) ;
Original file line number Diff line number Diff line change @@ -6,11 +6,10 @@ extern crate alloc;
6
6
use ecdsa:: { signature:: hazmat:: PrehashVerifier , Signature , VerifyingKey } ;
7
7
use elliptic_curve:: { sec1:: FromEncodedPoint , CurveArithmetic } ;
8
8
use hex_literal:: hex;
9
- use openvm_p256:: { EncodedPoint , P256 } ;
10
-
11
9
// clippy thinks this is unused, but it's used in the init! macro
12
10
#[ allow( unused) ]
13
11
use openvm_p256:: P256Point ;
12
+ use openvm_p256:: { EncodedPoint , P256 } ;
14
13
15
14
openvm:: init!( "openvm_init_ecdsa.rs" ) ;
16
15
You can’t perform that action at this time.
0 commit comments