Struct asn1_der::DerValue [−][src]
A wrapper around a DER value
Fields
data: Vec<u8>
The value
Implementations
impl DerValue
[src]
impl DerValue
[src]pub fn deserialize<'a>(
source: impl Iterator<Item = &'a u8>,
len: impl Into<usize>
) -> Result<Self, Asn1DerError>
[src]
source: impl Iterator<Item = &'a u8>,
len: impl Into<usize>
) -> Result<Self, Asn1DerError>
DER-deserializes the data from source
pub fn serialized_len(&self) -> usize
[src]
The length of the DER-serialized representation of self
pub fn serialize<'a>(
&self,
buf: impl Iterator<Item = &'a mut u8>
) -> Result<usize, Asn1DerError>
[src]
&self,
buf: impl Iterator<Item = &'a mut u8>
) -> Result<usize, Asn1DerError>
DER-serializes self
into buf
and returns the amount of bytes written
pub fn compute_serialized_len(payload_len: usize) -> usize
[src]
Efficiently computes the length of the DER-serialized representation of payload_len
bytes