org.bouncycastle.cms.jcajce.JceAlgorithmIdentifierConverter 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.cms.jcajce;
import java.security.AlgorithmParameters;
import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
import java.security.Provider;
import java.security.SecureRandom;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
import org.bouncycastle.cms.CMSException;
public class JceAlgorithmIdentifierConverter
{
private EnvelopedDataHelper helper = new EnvelopedDataHelper(new DefaultJcaJceExtHelper());
private SecureRandom random;
public JceAlgorithmIdentifierConverter()
{
}
public JceAlgorithmIdentifierConverter setProvider(Provider provider)
{
this.helper = new EnvelopedDataHelper(new ProviderJcaJceExtHelper(provider));
return this;
}
public JceAlgorithmIdentifierConverter setProvider(String providerName)
{
this.helper = new EnvelopedDataHelper(new NamedJcaJceExtHelper(providerName));
return this;
}
public AlgorithmParameters getAlgorithmParameters(AlgorithmIdentifier algorithmIdentifier)
throws CMSException
{
ASN1Encodable parameters = algorithmIdentifier.getParameters();
if (parameters == null)
{
return null;
}
try
{
AlgorithmParameters params = helper.createAlgorithmParameters(algorithmIdentifier.getAlgorithm());
CMSUtils.loadParameters(params, algorithmIdentifier.getParameters());
return params;
}
catch (NoSuchAlgorithmException e)
{
throw new CMSException("can't find parameters for algorithm", e);
}
catch (NoSuchProviderException e)
{
throw new CMSException("can't find provider for algorithm", e);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy