org.bouncycastle.asn1.x509.PolicyQualifierId Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk18on Show documentation
Show all versions of bcprov-ext-debug-jdk18on Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for Java 1.8 and later with debug enabled.
The newest version!
package org.bouncycastle.asn1.x509;
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
/**
* PolicyQualifierId, used in the CertificatePolicies
* X509V3 extension.
*
*
* id-qt OBJECT IDENTIFIER ::= { id-pkix 2 }
* id-qt-cps OBJECT IDENTIFIER ::= { id-qt 1 }
* id-qt-unotice OBJECT IDENTIFIER ::= { id-qt 2 }
* PolicyQualifierId ::=
* OBJECT IDENTIFIER (id-qt-cps | id-qt-unotice)
*
*/
public class PolicyQualifierId extends ASN1ObjectIdentifier
{
private static final String id_qt = "1.3.6.1.5.5.7.2";
private PolicyQualifierId(String id)
{
super(id);
}
public static final PolicyQualifierId id_qt_cps =
new PolicyQualifierId(id_qt + ".1");
public static final PolicyQualifierId id_qt_unotice =
new PolicyQualifierId(id_qt + ".2");
}