Function der_parser::ber::parse_ber_sequence [−][src]
pub fn parse_ber_sequence(i: &[u8]) -> BerResult<'_>
Expand description
Parse a sequence of BER elements
Read a sequence of BER 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.