Type Definition crypto_bigint::U3072[][src]

pub type U3072 = UInt<{ 3072 / crate::Limb::BIT_SIZE }>;
Expand description

3072-bit unsigned big integer

Trait Implementations

Size of a byte array which encodes a big integer.

Deserialize from a big-endian byte array.

Deserialize from a little-endian byte array.

Serialize to a big-endian byte array.

Serialize to a little-endian byte array.

Concatenated output: twice the width of Self.

Concate the two values, with self as most significant and rhs as the least significant. Read more

Size of this integer in bits.

Size of this integer in bytes.

Byte array representation.

Decode from big endian bytes.

Decode from little endian bytes.

Encode to big endian bytes.

Encode to little endian bytes.

Split output: high/low components of the value.

Split this number in half, returning its high and low components respectively. Read more