crypto_bigint

Type Alias U64

Source
pub type U64 = UInt<{ _ }>;
Expand description

64-bit unsigned big integer.

Aliased Type§

struct U64 { /* private fields */ }

Implementations§

Source§

impl U64

Source

pub const fn concat(&self, rhs: &Self) -> UInt<{ _ }>

Concatenate the two values, with self as most significant and rhs as the least significant.

Trait Implementations§

Source§

impl ArrayEncoding for U64

Source§

type ByteSize = UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>

Size of a byte array which encodes a big integer.
Source§

fn from_be_byte_array(bytes: ByteArray<Self>) -> Self

Deserialize from a big-endian byte array.
Source§

fn from_le_byte_array(bytes: ByteArray<Self>) -> Self

Deserialize from a little-endian byte array.
Source§

fn to_be_byte_array(&self) -> ByteArray<Self>

Serialize to a big-endian byte array.
Source§

fn to_le_byte_array(&self) -> ByteArray<Self>

Serialize to a little-endian byte array.
Source§

impl Concat for U64

Source§

type Output = UInt<{nlimbs!($bits) * 2}>

Concatenated output: twice the width of Self.
Source§

fn concat(&self, rhs: &Self) -> Self::Output

Concatenate the two values, with self as most significant and rhs as the least significant.
Source§

impl Encoding for U64

Source§

const BIT_SIZE: usize = 64usize

Size of this integer in bits.
Source§

const BYTE_SIZE: usize = 8usize

Size of this integer in bytes.
Source§

type Repr = [u8; 8]

Byte array representation.
Source§

fn from_be_bytes(bytes: Self::Repr) -> Self

Decode from big endian bytes.
Source§

fn from_le_bytes(bytes: Self::Repr) -> Self

Decode from little endian bytes.
Source§

fn to_be_bytes(&self) -> Self::Repr

Encode to big endian bytes.
Source§

fn to_le_bytes(&self) -> Self::Repr

Encode to little endian bytes.