01: package org.bouncycastle.asn1.x509.qualified;
02:
03: import org.bouncycastle.asn1.DERObjectIdentifier;
04:
05: public interface RFC3739QCObjectIdentifiers {
06: //
07: // base id
08: //
09: static final String id_qcs = "1.3.6.1.5.5.7.11";
10:
11: static final DERObjectIdentifier id_qcs_pkixQCSyntax_v1 = new DERObjectIdentifier(
12: id_qcs + ".1");
13: static final DERObjectIdentifier id_qcs_pkixQCSyntax_v2 = new DERObjectIdentifier(
14: id_qcs + ".2");
15: }
|