org.bouncycastle.openssl.bc.BcPEMDecryptorProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polaris-all Show documentation
Show all versions of polaris-all Show documentation
All in one project for polaris-java
package org.bouncycastle.openssl.bc;
import org.bouncycastle.openssl.PEMDecryptor;
import org.bouncycastle.openssl.PEMDecryptorProvider;
import org.bouncycastle.openssl.PEMException;
import org.bouncycastle.openssl.PasswordException;
public class BcPEMDecryptorProvider
implements PEMDecryptorProvider
{
private final char[] password;
public BcPEMDecryptorProvider(char[] password)
{
this.password = password;
}
public PEMDecryptor get(final String dekAlgName)
{
return new PEMDecryptor()
{
public byte[] decrypt(byte[] keyBytes, byte[] iv)
throws PEMException
{
if (password == null)
{
throw new PasswordException("Password is null, but a password is required");
}
return PEMUtilities.crypt(false, keyBytes, password, dekAlgName, iv);
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy