本文整理匯總了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);
}