Function parse_ber_set
pub fn parse_ber_set(i: &[u8]) -> Result<(&[u8], BerObject<'_>), Err<Error>>Available on (crate features
rustls or boring or acme) and crate feature rustls only.Expand description
Parse a set of BER elements
Read a set of BER objects, without any constraint on the types. Set is parsed recursively, so if constructed elements are found, they are parsed using the same function.
To read a specific set of objects (giving the expected types), use the
parse_ber_set_defined macro.