01: package org.bouncycastle.asn1.ocsp;
02:
03: import org.bouncycastle.asn1.DERObjectIdentifier;
04:
05: public interface OCSPObjectIdentifiers {
06: public static final String pkix_ocsp = "1.3.6.1.5.5.7.48.1";
07:
08: public static final DERObjectIdentifier id_pkix_ocsp = new DERObjectIdentifier(
09: pkix_ocsp);
10: public static final DERObjectIdentifier id_pkix_ocsp_basic = new DERObjectIdentifier(
11: pkix_ocsp + ".1");
12:
13: //
14: // extensions
15: //
16: public static final DERObjectIdentifier id_pkix_ocsp_nonce = new DERObjectIdentifier(
17: pkix_ocsp + ".2");
18: public static final DERObjectIdentifier id_pkix_ocsp_crl = new DERObjectIdentifier(
19: pkix_ocsp + ".3");
20:
21: public static final DERObjectIdentifier id_pkix_ocsp_response = new DERObjectIdentifier(
22: pkix_ocsp + ".4");
23: public static final DERObjectIdentifier id_pkix_ocsp_nocheck = new DERObjectIdentifier(
24: pkix_ocsp + ".5");
25: public static final DERObjectIdentifier id_pkix_ocsp_archive_cutoff = new DERObjectIdentifier(
26: pkix_ocsp + ".6");
27: public static final DERObjectIdentifier id_pkix_ocsp_service_locator = new DERObjectIdentifier(
28: pkix_ocsp + ".7");
29: }
|