Function parse_x509_der

Source
pub fn parse_x509_der<'a>(
    bytes: &'a [u8],
) -> Result<CertificateValue<'a>, ParseError>
Expand description

Parses the given bytes in ASN.1 DER format to a x509::CertificateValue.

This function has been formally verified for parsing soundness, completeness, and non-malleability.

NOTE: This is an internal function that is subject to change.