TODO netlogon_user_flags_ntlmv2_enabled
[wireshark-sm.git] / epan / dissectors / asn1 / pkixproxy / PKIXProxy.asn
blobc4f2956aaad12b57d000d64b843db7b6943f27f5
1 --   PKIXProxy
2 --   This ASN.1 definition is taken from RFC3820 and modified to pass
3 --   through the asn2wrs compiler.
4 --   
5 --   The original copyright of the ASN.1 module follows below:
6 --
7 --   Full Copyright Statement
8 --
9 --   Copyright (C) The Internet Society (2004).  This document is subject
10 --   to the rights, licenses and restrictions contained in BCP 78, and
11 --   except as set forth therein, the authors retain all their rights.
13 --   This document and the information contained herein are provided on an
14 --   "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
15 --   OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE INTERNET
16 --   ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED,
17 --   INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE
18 --   INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
19 --   WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
22 PKIXproxy88 { iso(1) identified-organization(3) dod(6)
23        internet(1) security(5) mechanisms(5) pkix(7) id-mod(0)
24        proxy-cert-extns(25) }
26 DEFINITIONS EXPLICIT TAGS ::=
28 BEGIN
30 -- EXPORTS ALL --
32 -- IMPORTS NONE --
34 -- PKIX specific OIDs
36 --id-pkix OBJECT IDENTIFIER ::=
37 --           { iso(1) identified-organization(3)
38 --                dod(6) internet(1) security(5) mechanisms(5) pkix(7) }
40 -- private certificate extensions
41 --id-pe   OBJECT IDENTIFIER ::= { id-pkix 1 }
43 -- Locally defined OIDs
45 -- The proxy certificate extension
46 --id-pe-proxyCertInfo    OBJECT IDENTIFIER ::= { id-pe 14 }
48 -- Proxy certificate policy languages
49 --id-ppl  OBJECT IDENTIFIER ::= { id-pkix 21 }
51 -- Proxy certificate policies languages defined in
52 --id-ppl-anyLanguage     OBJECT IDENTIFIER ::= { id-ppl 0 }
53 --id-ppl-inheritAll      OBJECT IDENTIFIER ::= { id-ppl 1 }
54 --id-ppl-independent     OBJECT IDENTIFIER ::= { id-ppl 2 }
56 -- The ProxyCertInfo Extension
57 ProxyCertInfoExtension  ::= SEQUENCE {
58          pCPathLenConstraint     ProxyCertPathLengthConstraint
59                                        OPTIONAL,
60          proxyPolicy             ProxyPolicy }
62 ProxyCertPathLengthConstraint  ::= INTEGER
64 ProxyPolicy  ::= SEQUENCE {
65          policyLanguage          OBJECT IDENTIFIER,
66          policy                  OCTET STRING OPTIONAL }
68 END