diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:34:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:34:10 +0000 |
commit | e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch) | |
tree | 68cb5ef9081156392f1dd62a00c6ccc1451b93df /epan/dissectors/asn1/x509ce/CertificateExtensionsRFC9310.asn | |
parent | Initial commit. (diff) | |
download | wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip |
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/asn1/x509ce/CertificateExtensionsRFC9310.asn')
-rw-r--r-- | epan/dissectors/asn1/x509ce/CertificateExtensionsRFC9310.asn | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/epan/dissectors/asn1/x509ce/CertificateExtensionsRFC9310.asn b/epan/dissectors/asn1/x509ce/CertificateExtensionsRFC9310.asn new file mode 100644 index 00000000..9d432be8 --- /dev/null +++ b/epan/dissectors/asn1/x509ce/CertificateExtensionsRFC9310.asn @@ -0,0 +1,28 @@ + -- ASN.1 file from the RFC9310 definition + NFTypeCertExtn + { iso(1) identified-organization(3) dod(6) internet(1) + security(5) mechanisms(5) pkix(7) id-mod(0) + id-mod-nftype(106) } + + DEFINITIONS IMPLICIT TAGS ::= + BEGIN + + -- NFTypes Certificate Extension + + ext-NFType EXTENSION ::= { + SYNTAX NFTypes + IDENTIFIED BY id-pe-nftype } + + -- NFTypes Certificate Extension OID + + id-pe-nftype OBJECT IDENTIFIER ::= + { iso(1) identified-organization(3) dod(6) internet(1) + security(5) mechanisms(5) pkix(7) id-pe(1) 34 } + + -- NFTypes Certificate Extension Syntax + + NFTypes ::= SEQUENCE SIZE (1..MAX) OF NFType + + NFType ::= IA5String (SIZE (1..32)) + + END |