Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MicrosoftObjectIdentifiers.java « microsoft « asn1 « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44b5653e495a2a0741887122a98813877cb5ad36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package org.spongycastle.asn1.microsoft;

import org.spongycastle.asn1.ASN1ObjectIdentifier;

/**
 * Microsoft
 * <p>
 * Object identifier base:
 * <pre>
 *    iso(1) identified-organization(3) dod(6) internet(1) private(4) enterprise(1) microsoft(311)
 * </pre>
 * 1.3.6.1.4.1.311
 */
public interface MicrosoftObjectIdentifiers
{
    /** Base OID: 1.3.6.1.4.1.311 */
    static final ASN1ObjectIdentifier    microsoft               = new ASN1ObjectIdentifier("1.3.6.1.4.1.311");
    /** OID: 1.3.6.1.4.1.311.20.2 */
    static final ASN1ObjectIdentifier    microsoftCertTemplateV1 = microsoft.branch("20.2");
    /** OID: 1.3.6.1.4.1.311.21.1 */
    static final ASN1ObjectIdentifier    microsoftCaVersion      = microsoft.branch("21.1");
    /** OID: 1.3.6.1.4.1.311.21.2 */
    static final ASN1ObjectIdentifier    microsoftPrevCaCertHash = microsoft.branch("21.2");
    /** OID: 1.3.6.1.4.1.311.21.7 */
    static final ASN1ObjectIdentifier    microsoftCertTemplateV2 = microsoft.branch("21.7");
    /** OID: 1.3.6.1.4.1.311.21.10 */
    static final ASN1ObjectIdentifier    microsoftAppPolicies    = microsoft.branch("21.10");
}