本文整理匯總了Java中org.bouncycastle.asn1.x509.SubjectPublicKeyInfo.parsePublicKey方法的典型用法代碼示例。如果您正苦於以下問題:Java SubjectPublicKeyInfo.parsePublicKey方法的具體用法?Java SubjectPublicKeyInfo.parsePublicKey怎麽用?Java SubjectPublicKeyInfo.parsePublicKey使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.bouncycastle.asn1.x509.SubjectPublicKeyInfo
的用法示例。
在下文中一共展示了SubjectPublicKeyInfo.parsePublicKey方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: JCERSAPublicKey
import org.bouncycastle.asn1.x509.SubjectPublicKeyInfo; //導入方法依賴的package包/類
JCERSAPublicKey(
SubjectPublicKeyInfo info)
{
try
{
RSAPublicKeyStructure pubKey = new RSAPublicKeyStructure((ASN1Sequence)info.parsePublicKey());
this.modulus = pubKey.getModulus();
this.publicExponent = pubKey.getPublicExponent();
}
catch (IOException e)
{
throw new IllegalArgumentException("invalid info structure in RSA public key");
}
}
示例2: generatePublic
import org.bouncycastle.asn1.x509.SubjectPublicKeyInfo; //導入方法依賴的package包/類
public PublicKey generatePublic(SubjectPublicKeyInfo pki)
throws InvalidKeySpecException
{
// get the inner type inside the BIT STRING
try
{
ASN1Primitive innerType = pki.parsePublicKey();
McElieceCCA2PublicKey key = McElieceCCA2PublicKey.getInstance((ASN1Sequence)innerType);
return new BCMcElieceCCA2PublicKey(key.getOID().getId(), key.getN(), key.getT(), key.getG());
}
catch (IOException cce)
{
throw new InvalidKeySpecException("Unable to decode X509EncodedKeySpec");
}
}
示例3: generatePublic
import org.bouncycastle.asn1.x509.SubjectPublicKeyInfo; //導入方法依賴的package包/類
public PublicKey generatePublic(SubjectPublicKeyInfo pki)
throws InvalidKeySpecException
{
// get the inner type inside the BIT STRING
try
{
ASN1Primitive innerType = pki.parsePublicKey();
McEliecePublicKey key = McEliecePublicKey.getInstance(innerType);
return new BCMcEliecePublicKey(key.getOID().getId(), key.getN(), key.getT(), key.getG());
}
catch (IOException cce)
{
throw new InvalidKeySpecException("Unable to decode X509EncodedKeySpec");
}
}