Function der_parser::parse_der_set [] [src]

pub fn parse_der_set(i: &[u8]) -> IResult<&[u8], DerObject>

Parse a set of DER elements

Read a set of DER objects, without any constraint on the types. Sequence is parsed recursively, so if structured elements are found, they are parsed using the same function.

To read a specific set of objects (giving the expected types), use the parse_der_set_defined macro.