org.spongycastle.pkcs.bc.BcPKCS10CertificationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pkix Show documentation
Show all versions of pkix Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle
intended for the Android platform. Android unfortunately ships with a stripped-down version of
Bouncy Castle, which prevents easy upgrades - Spongy Castle overcomes this and provides a full,
up-to-date version of the Bouncy Castle cryptographic libs.
The newest version!
package org.spongycastle.pkcs.bc;
import java.io.IOException;
import org.spongycastle.asn1.pkcs.CertificationRequest;
import org.spongycastle.crypto.params.AsymmetricKeyParameter;
import org.spongycastle.crypto.util.PublicKeyFactory;
import org.spongycastle.pkcs.PKCS10CertificationRequest;
import org.spongycastle.pkcs.PKCSException;
public class BcPKCS10CertificationRequest
extends PKCS10CertificationRequest
{
public BcPKCS10CertificationRequest(CertificationRequest certificationRequest)
{
super(certificationRequest);
}
public BcPKCS10CertificationRequest(byte[] encoding)
throws IOException
{
super(encoding);
}
public BcPKCS10CertificationRequest(PKCS10CertificationRequest requestHolder)
{
super(requestHolder.toASN1Structure());
}
public AsymmetricKeyParameter getPublicKey()
throws PKCSException
{
try
{
return PublicKeyFactory.createKey(this.getSubjectPublicKeyInfo());
}
catch (IOException e)
{
throw new PKCSException("error extracting key encoding: " + e.getMessage(), e);
}
}
}