01: package org.bouncycastle.asn1.microsoft;
02:
03: import org.bouncycastle.asn1.DERObjectIdentifier;
04:
05: public interface MicrosoftObjectIdentifiers {
06: //
07: // Microsoft
08: // iso(1) identified-organization(3) dod(6) internet(1) private(4) enterprise(1) microsoft(311)
09: //
10: static final DERObjectIdentifier microsoft = new DERObjectIdentifier(
11: "1.3.6.1.4.1.311");
12: static final DERObjectIdentifier microsoftCertTemplateV1 = new DERObjectIdentifier(
13: microsoft + ".20.2");
14: static final DERObjectIdentifier microsoftCaVersion = new DERObjectIdentifier(
15: microsoft + ".21.1");
16: static final DERObjectIdentifier microsoftPrevCaCertHash = new DERObjectIdentifier(
17: microsoft + ".21.2");
18: static final DERObjectIdentifier microsoftCertTemplateV2 = new DERObjectIdentifier(
19: microsoft + ".21.7");
20: static final DERObjectIdentifier microsoftAppPolicies = new DERObjectIdentifier(
21: microsoft + ".21.10");
22: }
|