pub fn parse_ber_any_with_tag_r(
    i: &[u8],
    tag: Tag,
    max_depth: usize
) -> BerResult<'_>
Expand description

Parse any BER object recursively, specifying the maximum recursion depth and expected tag

Raise an error if the maximum recursion depth was reached.