pub type BigInteger448 = BigInt<7>;
Aliased Type§
struct BigInteger448(pub [u64; 7]);
Fields§
§0: [u64; 7]
Implementations
Trait Implementations
Source§impl<const N: usize> BigInteger for BigInt<N>
impl<const N: usize> BigInteger for BigInt<N>
Source§fn add_with_carry(&mut self, other: &Self) -> bool
fn add_with_carry(&mut self, other: &Self) -> bool
Add another
BigInteger
to self
. This method stores the result in self
,
and returns a carry bit. Read moreSource§fn sub_with_borrow(&mut self, other: &Self) -> bool
fn sub_with_borrow(&mut self, other: &Self) -> bool
Subtract another
BigInteger
from this one. This method stores the result in
self
, and returns a borrow. Read moreSource§fn mul2(&mut self) -> bool
fn mul2(&mut self) -> bool
Performs a leftwise bitshift of this number, effectively multiplying
it by 2. Overflow is ignored. Read more
Source§fn muln(&mut self, n: u32)
fn muln(&mut self, n: u32)
Performs a leftwise bitshift of this number by n bits, effectively multiplying
it by 2^n. Overflow is ignored. Read more
Source§fn div2(&mut self)
fn div2(&mut self)
Performs a rightwise bitshift of this number, effectively dividing
it by 2. Read more
Source§fn divn(&mut self, n: u32)
fn divn(&mut self, n: u32)
Performs a rightwise bitshift of this number by some amount. Read more
Source§fn num_bits(&self) -> u32
fn num_bits(&self) -> u32
Compute the minimum number of bits needed to encode this number. Read more
Source§fn from_bits_be(bits: &[bool]) -> Self
fn from_bits_be(bits: &[bool]) -> Self
Returns the big integer representation of a given big endian boolean
array. Read more
Source§fn from_bits_le(bits: &[bool]) -> Self
fn from_bits_le(bits: &[bool]) -> Self
Returns the big integer representation of a given little endian boolean
array. Read more
Source§fn to_bytes_be(&self) -> Vec<u8> ⓘ
fn to_bytes_be(&self) -> Vec<u8> ⓘ
Returns the byte representation in a big endian byte array,
with leading zeros. Read more
Source§fn to_bytes_le(&self) -> Vec<u8> ⓘ
fn to_bytes_le(&self) -> Vec<u8> ⓘ
Returns the byte representation in a little endian byte array,
with trailing zeros. Read more
Source§fn to_bits_be(&self) -> Vec<bool>
fn to_bits_be(&self) -> Vec<bool>
Returns the bit representation in a big endian boolean array,
with leading zeroes. Read more
Source§impl<const N: usize> CanonicalDeserialize for BigInt<N>
impl<const N: usize> CanonicalDeserialize for BigInt<N>
Source§fn deserialize_with_mode<R: Read>(
reader: R,
compress: Compress,
validate: Validate,
) -> Result<Self, SerializationError>
fn deserialize_with_mode<R: Read>( reader: R, compress: Compress, validate: Validate, ) -> Result<Self, SerializationError>
The general deserialize method that takes in customization flags.
fn deserialize_compressed<R>(reader: R) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_compressed_unchecked<R>(
reader: R,
) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_uncompressed<R>(reader: R) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_uncompressed_unchecked<R>(
reader: R,
) -> Result<Self, SerializationError>where
R: Read,
Source§impl<const N: usize> CanonicalSerialize for BigInt<N>
impl<const N: usize> CanonicalSerialize for BigInt<N>
Source§fn serialize_with_mode<W: Write>(
&self,
writer: W,
compress: Compress,
) -> Result<(), SerializationError>
fn serialize_with_mode<W: Write>( &self, writer: W, compress: Compress, ) -> Result<(), SerializationError>
The general serialize method that takes in customization flags.