pub fn parse_der_sequence_of_v<'a, T, F, E>(f: F) -> impl FnMut(&'a [u8])
Available on crate feature
mtls
only.Expand description
Parse a SEQUENCE OF object (returning a vec)
Given a subparser for a DER type, parse a sequence of identical objects.
This differs from parse_der_sequence_of
in the parse function and return type.
/// Read a SEQUENCE OF INTEGER
fn parser(i:&[u8]) -> BerResult<Vec<DerObject>> {
parse_der_sequence_of_v(parse_der_integer)(i)
}
let (rem, v) = parser(&bytes).expect("parsing failed");