Trait num_primes::RandBigInt[][src]

pub trait RandBigInt {
    fn gen_biguint(&mut self, bit_size: usize) -> BigUint;
fn gen_bigint(&mut self, bit_size: usize) -> BigInt;
fn gen_biguint_below(&mut self, bound: &BigUint) -> BigUint;
fn gen_biguint_range(
        &mut self,
        lbound: &BigUint,
        ubound: &BigUint
    ) -> BigUint;
fn gen_bigint_range(&mut self, lbound: &BigInt, ubound: &BigInt) -> BigInt; }
Expand description

A trait for sampling random big integers.

The rand feature must be enabled to use this. See crate-level documentation for details.

Required methods

Generate a random BigUint of the given bit size.

Generate a random BigInt of the given bit size.

Generate a random BigUint less than the given bound. Fails when the bound is zero.

Generate a random BigUint within the given range. The lower bound is inclusive; the upper bound is exclusive. Fails when the upper bound is not greater than the lower bound.

Generate a random BigInt within the given range. The lower bound is inclusive; the upper bound is exclusive. Fails when the upper bound is not greater than the lower bound.

Implementors