crypto-bigint 0.7.2

Pure Rust implementation of a big integer library which has been designed from the ground-up for use in cryptographic applications. Provides constant-time, no_std-friendly implementations of modern formulas using const generics.
Documentation
//! Equivalence tests between `crypto_bigint::Int` and `num_bigint::BigInt`.

#![cfg(any(unix, windows))]

mod common;

use common::{to_bigint, to_biguint};
use crypto_bigint::{I256, Odd, U256};
use num_bigint::{BigInt, Sign, ToBigInt};
use num_modular::ModularSymbols;
use proptest::prelude::*;

fn to_int(big_int: BigInt) -> I256 {
    let mut input = [0u8; U256::BYTES];
    let (sign, encoded) = big_int.to_bytes_le();
    let l = encoded.len().min(U256::BYTES);
    input[..l].copy_from_slice(&encoded[..l]);
    let abs = *U256::from_le_slice(&input).as_int();
    if let Sign::Minus = sign {
        abs.wrapping_neg()
    } else {
        abs
    }
}

prop_compose! {
    fn int()(bytes in any::<[u8; 32]>()) -> I256 {
        *U256::from_le_slice(&bytes).as_int()
    }
}
prop_compose! {
    fn odd_uint()(mut bytes in any::<[u8; 32]>()) -> Odd<U256> {
        bytes[0] |= 1;
        U256::from_le_slice(&bytes).to_odd().unwrap()
    }
}

proptest! {
    #[test]
    fn roundtrip(a in int()) {
        prop_assert_eq!(a, to_int(to_bigint(&a)));
    }

    #[test]
    fn unbounded_shr_vartime_vs_ct(val in int(), shift in 0u32..=512) {
        prop_assert_eq!(
            val.unbounded_shr_vartime(shift),
            val.unbounded_shr(shift),
        );
    }

    #[test]
    fn jacobi_symbol(f in odd_uint(), g in int()) {
        let f_bi = to_biguint(&f).to_bigint().unwrap();
        let g_bi = to_bigint(&g);

        let expected = g_bi.jacobi(&f_bi);
        let actual = g.jacobi_symbol(&f) as i8;
        let actual_vartime = g.jacobi_symbol_vartime(&f) as i8;
        prop_assert_eq!(expected, actual);
        prop_assert_eq!(expected, actual_vartime);
    }
}