pub struct AsnDecoder;Expand description
Decodes BER-encoded bytes into an AsnValue tree.
Implementations§
Source§impl AsnDecoder
impl AsnDecoder
Sourcepub fn decode(data: &[u8]) -> Result<(AsnValue, usize), KernelError>
pub fn decode(data: &[u8]) -> Result<(AsnValue, usize), KernelError>
Decode a single ASN.1 TLV from the beginning of data.
Returns (value, bytes_consumed).