All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.asn1.dvcs.DVCSObjectIdentifiers Maven / Gradle / Ivy

Go to download

The FIPS 140-3 Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms certified to FIPS 140-3 level 1. This jar contains JCE provider and low-level API for the BC-FJA version 2.0.0, FIPS Certificate #4743. Please see certificate for certified platform details.

There is a newer version: 2.0.0
Show newest version
/***************************************************************/
/******    DO NOT EDIT THIS CLASS bc-java SOURCE FILE     ******/
/***************************************************************/
package org.bouncycastle.asn1.dvcs;

import org.bouncycastle.asn1.ASN1ObjectIdentifier;

/**
 * OIDs for RFC 3029
 * Data Validation and Certification Server Protocols
 */
public interface DVCSObjectIdentifiers
{
    /** Base OID id-pkix: 1.3.6.1.5.5.7 */
    static final ASN1ObjectIdentifier id_pkix  = new ASN1ObjectIdentifier("1.3.6.1.5.5.7");
    /** Base OID id-smime: 1.2.840.113549.1.9.16 */
    static final ASN1ObjectIdentifier id_smime = new ASN1ObjectIdentifier("1.2.840.113549.1.9.16");

    /** Authority Information Access for DVCS; id-ad-dcvs;  OID: 1.3.6.1.5.5.7.48.4 */
    static final ASN1ObjectIdentifier id_ad_dvcs = id_pkix.branch("48.4");

    /** Key Purpose for DVCS; id-kp-dvcs; OID: 1.3.6.1.5.5.7.3.10 */
    static final ASN1ObjectIdentifier id_kp_dvcs = id_pkix.branch("3.10");

    /** SMIME eContentType id-ct-DVCSRequestData;   OID: 1.2.840.113549.1.9.16.1.7 */
    static final ASN1ObjectIdentifier id_ct_DVCSRequestData  = id_smime.branch("1.7");
    /** SMIME eContentType id-ct-DVCSResponseData;  OID: 1.2.840.113549.1.9.16.1.8 */
    static final ASN1ObjectIdentifier id_ct_DVCSResponseData = id_smime.branch("1.8");

    /** SMIME DataValidation certificate attribute id-aa-dvcs-dvc;  OID: 1.2.840.113549.1.9.16.2,29 */
    static final ASN1ObjectIdentifier id_aa_dvcs_dvc = id_smime.branch("2.29");
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy