xref: /freebsd/crypto/heimdal/lib/asn1/rfc2459.asn1 (revision 1669d8afc64812c8d2d1d147ae1fd42ff441e1b1)
1RFC2459 DEFINITIONS ::= BEGIN
2
3AttributeType ::= OBJECT-IDENTIFIER
4
5AttributeValue ::= OCTET STRING --ANY DEFINED BY AttributeType
6
7AttributeTypeAndValue ::= SEQUENCE {
8	type AttributeType,
9	value AttributeValue
10}
11
12RelativeDistinguishedName ::= --SET
13SEQUENCE OF AttributeTypeAndValue
14
15RDNSequence ::= SEQUENCE OF RelativeDistinguishedName
16
17Name ::= CHOICE { -- RFC2459
18	x RDNSequence
19}
20
21END