pub struct Int { /* private fields */ }
Available on crate feature
pkcs8
only.Expand description
Signed arbitrary precision ASN.1 INTEGER
type.
Provides heap-allocated storage for big endian bytes which comprise an signed integer value.
Intended for use cases like very large integers that are used in cryptographic applications (e.g. keys, signatures).
Implementations§
Trait Implementations§
Source§impl<'a> DecodeValue<'a> for Int
impl<'a> DecodeValue<'a> for Int
Source§impl EncodeValue for Int
impl EncodeValue for Int
Source§impl Ord for Int
impl Ord for Int
Source§impl OwnedToRef for Int
impl OwnedToRef for Int
Source§fn owned_to_ref(&self) -> <Int as OwnedToRef>::Borrowed<'_>
fn owned_to_ref(&self) -> <Int as OwnedToRef>::Borrowed<'_>
Creates a new object referencing back to the self for storage
Source§impl PartialOrd for Int
impl PartialOrd for Int
impl Eq for Int
impl StructuralPartialEq for Int
Auto Trait Implementations§
impl Freeze for Int
impl RefUnwindSafe for Int
impl Send for Int
impl Sync for Int
impl Unpin for Int
impl UnwindSafe for Int
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
Source§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
Source§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
Source§fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer
.
Source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.