File tree 1 file changed +22
-1
lines changed
1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -400,7 +400,7 @@ mod tests {
400
400
use alloc:: vec:: Vec ;
401
401
use core:: num:: NonZero ;
402
402
403
- use crypto_bigint:: U64 ;
403
+ use crypto_bigint:: { U256 , U64 } ;
404
404
use num_prime:: nt_funcs:: factorize64;
405
405
use rand_chacha:: ChaCha8Rng ;
406
406
use rand_core:: { OsRng , SeedableRng , TryRngCore } ;
@@ -614,4 +614,25 @@ mod tests {
614
614
. get ( ) ;
615
615
assert_eq ! ( x, U64 :: ONE ) ;
616
616
}
617
+
618
+ #[ test]
619
+ fn platform_independence ( ) {
620
+ let mut rng = ChaCha8Rng :: from_seed ( [ 7u8 ; 32 ] ) ;
621
+
622
+ let x = random_odd_integer :: < U256 , _ > ( & mut rng, NonZero :: new ( 200 ) . unwrap ( ) , SetBits :: TwoMsb )
623
+ . unwrap ( )
624
+ . get ( ) ;
625
+ assert_eq ! (
626
+ x,
627
+ U256 :: from_be_hex( "00000000000000DAD782090CD9F9744AE64381DA8B37F5D4E4D0CB593FBC1E39" )
628
+ ) ;
629
+
630
+ let x = random_odd_integer :: < U256 , _ > ( & mut rng, NonZero :: new ( 220 ) . unwrap ( ) , SetBits :: TwoMsb )
631
+ . unwrap ( )
632
+ . get ( ) ;
633
+ assert_eq ! (
634
+ x,
635
+ U256 :: from_be_hex( "000000000F6547964157E35960CE28A6F256EF9A53F6671C19A2D683053F65B5" )
636
+ ) ;
637
+ }
617
638
}
You can’t perform that action at this time.
0 commit comments