org.spongycastle.openssl.jcajce.JcePEMEncryptorBuilder 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.
package org.spongycastle.openssl.jcajce;
import java.security.Provider;
import java.security.SecureRandom;
import org.spongycastle.jcajce.util.DefaultJcaJceHelper;
import org.spongycastle.jcajce.util.JcaJceHelper;
import org.spongycastle.jcajce.util.NamedJcaJceHelper;
import org.spongycastle.jcajce.util.ProviderJcaJceHelper;
import org.spongycastle.openssl.PEMEncryptor;
import org.spongycastle.openssl.PEMException;
public class JcePEMEncryptorBuilder
{
private final String algorithm;
private JcaJceHelper helper = new DefaultJcaJceHelper();
private SecureRandom random;
public JcePEMEncryptorBuilder(String algorithm)
{
this.algorithm = algorithm;
}
public JcePEMEncryptorBuilder setProvider(Provider provider)
{
this.helper = new ProviderJcaJceHelper(provider);
return this;
}
public JcePEMEncryptorBuilder setProvider(String providerName)
{
this.helper = new NamedJcaJceHelper(providerName);
return this;
}
public JcePEMEncryptorBuilder setSecureRandom(SecureRandom random)
{
this.random = random;
return this;
}
public PEMEncryptor build(final char[] password)
{
if (random == null)
{
random = new SecureRandom();
}
int ivLength = algorithm.startsWith("AES-") ? 16 : 8;
final byte[] iv = new byte[ivLength];
random.nextBytes(iv);
return new PEMEncryptor()
{
public String getAlgorithm()
{
return algorithm;
}
public byte[] getIV()
{
return iv;
}
public byte[] encrypt(byte[] encoding)
throws PEMException
{
return PEMUtilities.crypt(true, helper, encoding, password, algorithm, iv);
}
};
}
}