1package org.bouncycastle.asn1.misc;
2
3import org.bouncycastle.asn1.ASN1ObjectIdentifier;
4
5public interface MiscObjectIdentifiers
6{
7    //
8    // Netscape
9    //       iso/itu(2) joint-assign(16) us(840) uscompany(1) netscape(113730) cert-extensions(1) }
10    //
11    /** Netscape cert extensions OID base: 2.16.840.1.113730.1  */
12    static final ASN1ObjectIdentifier    netscape                = new ASN1ObjectIdentifier("2.16.840.1.113730.1");
13    /** Netscape cert CertType OID: 2.16.840.1.113730.1.1  */
14    static final ASN1ObjectIdentifier    netscapeCertType        = netscape.branch("1");
15    /** Netscape cert BaseURL OID: 2.16.840.1.113730.1.2  */
16    static final ASN1ObjectIdentifier    netscapeBaseURL         = netscape.branch("2");
17    /** Netscape cert RevocationURL OID: 2.16.840.1.113730.1.3  */
18    static final ASN1ObjectIdentifier    netscapeRevocationURL   = netscape.branch("3");
19    /** Netscape cert CARevocationURL OID: 2.16.840.1.113730.1.4  */
20    static final ASN1ObjectIdentifier    netscapeCARevocationURL = netscape.branch("4");
21    /** Netscape cert RenewalURL OID: 2.16.840.1.113730.1.7  */
22    static final ASN1ObjectIdentifier    netscapeRenewalURL      = netscape.branch("7");
23    /** Netscape cert CApolicyURL OID: 2.16.840.1.113730.1.8  */
24    static final ASN1ObjectIdentifier    netscapeCApolicyURL     = netscape.branch("8");
25    /** Netscape cert SSLServerName OID: 2.16.840.1.113730.1.12  */
26    static final ASN1ObjectIdentifier    netscapeSSLServerName   = netscape.branch("12");
27    /** Netscape cert CertComment OID: 2.16.840.1.113730.1.13  */
28    static final ASN1ObjectIdentifier    netscapeCertComment     = netscape.branch("13");
29
30    //
31    // Verisign
32    //       iso/itu(2) joint-assign(16) us(840) uscompany(1) verisign(113733) cert-extensions(1) }
33    //
34    /** Verisign OID base: 2.16.840.1.113733.1 */
35    static final ASN1ObjectIdentifier   verisign                = new ASN1ObjectIdentifier("2.16.840.1.113733.1");
36
37    /** Verisign CZAG (Country,Zip,Age,Gender) Extension OID: 2.16.840.1.113733.1.6.3 */
38    static final ASN1ObjectIdentifier    verisignCzagExtension   = verisign.branch("6.3");
39    /** Verisign D&B D-U-N-S number Extension OID: 2.16.840.1.113733.1.6.15 */
40    static final ASN1ObjectIdentifier    verisignDnbDunsNumber   = verisign.branch("6.15");
41
42    //
43    // Novell
44    //       iso/itu(2) country(16) us(840) organization(1) novell(113719)
45    //
46    /** Novell OID base: 2.16.840.1.113719 */
47    static final ASN1ObjectIdentifier    novell                  = new ASN1ObjectIdentifier("2.16.840.1.113719");
48    /** Novell SecurityAttribs OID: 2.16.840.1.113719.1.9.4.1 */
49    static final ASN1ObjectIdentifier    novellSecurityAttribs   = novell.branch("1.9.4.1");
50
51    //
52    // Entrust
53    //       iso(1) member-body(16) us(840) nortelnetworks(113533) entrust(7)
54    //
55    /** NortelNetworks Entrust OID base: 1.2.840.113533.7 */
56    static final ASN1ObjectIdentifier    entrust                 = new ASN1ObjectIdentifier("1.2.840.113533.7");
57    /** NortelNetworks Entrust VersionExtension OID: 1.2.840.113533.7.65.0 */
58    static final ASN1ObjectIdentifier    entrustVersionExtension = entrust.branch("65.0");
59}
60