NIFI-1240 removing explicit reference to SUN provider. Not necessary for our use and ties us to Sun or JREs with Sun JCE available. Favoring no-args constructor instantiation of SecureRandom for greater flexibility in choosing from available CSPs. Deprecating the associated public constant for the PRNG.

Signed-off-by: Aldrin Piri <aldrin@apache.org>
This commit is contained in:
joewitt 2015-12-02 20:47:51 -05:00 committed by Aldrin Piri
parent 6bdcd3913f
commit 3656c883c7
1 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ public class PasswordBasedEncryptor implements Encryptor {
private int saltSize;
private SecretKey secretKey;
@Deprecated
public static final String SECURE_RANDOM_ALGORITHM = "SHA1PRNG";
public static final int DEFAULT_SALT_SIZE = 8;
@ -65,7 +66,7 @@ public class PasswordBasedEncryptor implements Encryptor {
public StreamCallback getEncryptionCallback() throws ProcessException {
try {
byte[] salt = new byte[saltSize];
SecureRandom secureRandom = SecureRandom.getInstance(SECURE_RANDOM_ALGORITHM, "SUN");
SecureRandom secureRandom = new SecureRandom();
secureRandom.nextBytes(salt);
return new EncryptCallback(salt);
} catch (Exception e) {