red_asn1 0.4.2

A little library to encode/decode ASN1 DER
Documentation
1
2
3
4
5
6
7

use crate::{Tag, SEQUENCE_TAG_NUMBER};

/// Tag of Sequence
pub fn sequence_tag() -> Tag {
    return Tag::new_constructed_universal(SEQUENCE_TAG_NUMBER)
}