pub fn big_to_limbs(
nb_limbs: u32,
base: &BigUint,
value: &BigUint,
) -> Vec<BigUint>Expand description
Breaks the given value into nb_limbs limbs representing the value in the
given base (in little-endian).
Panics if the conversion is not possible.