Struct der::BigUInt[][src]

pub struct BigUInt<'a, N: Unsigned + NonZero> { /* fields omitted */ }
This is supported on crate feature big-uint only.
Expand description

“Big” unsigned ASN.1 INTEGER type.

Provides direct access to the underlying big endian bytes which comprise an unsigned integer value.

Intended for use cases like very large integers that are used in cryptographic applications (e.g. keys, signatures).

Generic over a Size value (e.g. der::consts::U64), indicating the size of an integer in bytes.

Currently supported sizes are 1 - 512 bytes.

Implementations

impl<'a, N> BigUInt<'a, N> where
    N: Unsigned + NonZero
[src]

pub fn new(bytes: &'a [u8]) -> Result<Self>[src]

Create a new BigUInt from a byte slice.

Slice may be less than or equal to N bytes.

pub fn as_bytes(&self) -> &'a [u8][src]

Borrow the inner byte slice which contains the least significant bytes of a big endian integer value with all leading zeros stripped, and may be any length from empty (i.e. zero) to N bytes.

pub fn len(&self) -> Length[src]

Get the length of this BigUInt in bytes.

pub fn is_empty(&self) -> bool[src]

Is the inner byte slice empty?

Trait Implementations

impl<'a, N: Clone + Unsigned + NonZero> Clone for BigUInt<'a, N>[src]

fn clone(&self) -> BigUInt<'a, N>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a, N: Debug + Unsigned + NonZero> Debug for BigUInt<'a, N>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<'a, N> Encodable for BigUInt<'a, N> where
    N: Unsigned + NonZero
[src]

fn encoded_len(&self) -> Result<Length>[src]

Compute the length of this value in bytes when encoded as ASN.1 DER.

fn encode(&self, encoder: &mut Encoder<'_>) -> Result<()>[src]

Encode this value as ASN.1 DER using the provided Encoder.

fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8]>[src]

Encode this value to the provided byte slice, returning a sub-slice containing the encoded message. Read more

fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length>[src]

This is supported on crate feature alloc only.

Encode this message as ASN.1 DER, appending it to the provided byte vector. Read more

fn to_vec(&self) -> Result<Vec<u8>>[src]

This is supported on crate feature alloc only.

Serialize this message as a byte vector.

impl<'a, N> From<&'_ BigUInt<'a, N>> for BigUInt<'a, N> where
    N: Unsigned + NonZero
[src]

fn from(value: &BigUInt<'a, N>) -> BigUInt<'a, N>[src]

Performs the conversion.

impl<'a, N: PartialEq + Unsigned + NonZero> PartialEq<BigUInt<'a, N>> for BigUInt<'a, N>[src]

fn eq(&self, other: &BigUInt<'a, N>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &BigUInt<'a, N>) -> bool[src]

This method tests for !=.

impl<'a, N: PartialOrd + Unsigned + NonZero> PartialOrd<BigUInt<'a, N>> for BigUInt<'a, N>[src]

fn partial_cmp(&self, other: &BigUInt<'a, N>) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<'a, N> Tagged for BigUInt<'a, N> where
    N: Unsigned + NonZero
[src]

const TAG: Tag[src]

ASN.1 tag

impl<'a, N> TryFrom<Any<'a>> for BigUInt<'a, N> where
    N: Unsigned + NonZero
[src]

type Error = Error

The type returned in the event of a conversion error.

fn try_from(any: Any<'a>) -> Result<BigUInt<'a, N>>[src]

Performs the conversion.

impl<'a, N: Copy + Unsigned + NonZero> Copy for BigUInt<'a, N>[src]

impl<'a, N: Eq + Unsigned + NonZero> Eq for BigUInt<'a, N>[src]

impl<'a, N: Unsigned + NonZero> StructuralEq for BigUInt<'a, N>[src]

impl<'a, N: Unsigned + NonZero> StructuralPartialEq for BigUInt<'a, N>[src]

Auto Trait Implementations

impl<'a, N> RefUnwindSafe for BigUInt<'a, N> where
    N: RefUnwindSafe

impl<'a, N> Send for BigUInt<'a, N> where
    N: Send

impl<'a, N> Sync for BigUInt<'a, N> where
    N: Sync

impl<'a, N> Unpin for BigUInt<'a, N> where
    N: Unpin

impl<'a, N> UnwindSafe for BigUInt<'a, N> where
    N: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.