org.bouncycastle.pkcs.jcajce.JcaPKCS12SafeBagBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcpkix-fips Show documentation
Show all versions of bcpkix-fips Show documentation
The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. The APIs are designed primarily to be used in conjunction with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified.
package org.bouncycastle.pkcs.jcajce;
import java.io.IOException;
import java.security.PrivateKey;
import java.security.cert.CertificateEncodingException;
import java.security.cert.X509Certificate;
import org.bouncycastle.asn1.pkcs.PrivateKeyInfo;
import org.bouncycastle.asn1.x509.Certificate;
import org.bouncycastle.operator.OutputEncryptor;
import org.bouncycastle.pkcs.PKCS12SafeBagBuilder;
import org.bouncycastle.pkcs.PKCSIOException;
public class JcaPKCS12SafeBagBuilder
extends PKCS12SafeBagBuilder
{
public JcaPKCS12SafeBagBuilder(X509Certificate certificate)
throws IOException
{
super(convertCert(certificate));
}
private static Certificate convertCert(X509Certificate certificate)
throws IOException
{
try
{
return Certificate.getInstance(certificate.getEncoded());
}
catch (CertificateEncodingException e)
{
throw new PKCSIOException("cannot encode certificate: " + e.getMessage(), e);
}
}
public JcaPKCS12SafeBagBuilder(PrivateKey privateKey, OutputEncryptor encryptor)
{
super(PrivateKeyInfo.getInstance(privateKey.getEncoded()), encryptor);
}
public JcaPKCS12SafeBagBuilder(PrivateKey privateKey)
{
super(PrivateKeyInfo.getInstance(privateKey.getEncoded()));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy