本文整理汇总了Java中org.bouncycastle.asn1.isismtt.ocsp.RequestedCertificate类的典型用法代码示例。如果您正苦于以下问题:Java RequestedCertificate类的具体用法?Java RequestedCertificate怎么用?Java RequestedCertificate使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
RequestedCertificate类属于org.bouncycastle.asn1.isismtt.ocsp包,在下文中一共展示了RequestedCertificate类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: checkConstruction
import org.bouncycastle.asn1.isismtt.ocsp.RequestedCertificate; //导入依赖的package包/类
private void checkConstruction(
RequestedCertificate requested,
int type,
byte[] certOctets,
Certificate cert)
throws IOException
{
checkValues(requested, type, certOctets, cert);
requested = RequestedCertificate.getInstance(requested);
checkValues(requested, type, certOctets, cert);
ASN1InputStream aIn = new ASN1InputStream(requested.toASN1Primitive().getEncoded());
Object obj = aIn.readObject();
requested = RequestedCertificate.getInstance(obj);
checkValues(requested, type, certOctets, cert);
}
示例2: checkValues
import org.bouncycastle.asn1.isismtt.ocsp.RequestedCertificate; //导入依赖的package包/类
private void checkValues(
RequestedCertificate requested,
int type,
byte[] certOctets,
Certificate cert)
throws IOException
{
checkMandatoryField("certType", type, requested.getType());
if (requested.getType() == RequestedCertificate.certificate)
{
checkMandatoryField("certificate", cert.getEncoded(), requested.getCertificateBytes());
}
else
{
checkMandatoryField("certificateOctets", certOctets, requested.getCertificateBytes());
}
}
示例3: checkConstruction
import org.bouncycastle.asn1.isismtt.ocsp.RequestedCertificate; //导入依赖的package包/类
private void checkConstruction(
RequestedCertificate requested,
int type,
byte[] certOctets,
Certificate cert)
throws IOException
{
checkValues(requested, type, certOctets, cert);
requested = RequestedCertificate.getInstance(requested);
checkValues(requested, type, certOctets, cert);
ASN1InputStream aIn = new ASN1InputStream(requested.toASN1Object().getEncoded());
Object obj = aIn.readObject();
requested = RequestedCertificate.getInstance(obj);
checkValues(requested, type, certOctets, cert);
}