[][src]Function der_parser::der::parse_der_sequence

pub fn parse_der_sequence(i: &[u8]) -> IResult<&[u8], BerObject>

Parse a sequence of DER elements

Read a sequence 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 sequence of objects (giving the expected types), use the parse_ber_sequence_defined macro.