org.bouncycastle.asn1.dvcs.DVCSObjectIdentifiers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcutil-fips Show documentation
Show all versions of bcutil-fips Show documentation
The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified and used appropriately.
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");
}