com.codeheadsystems.crypto.manager.SecuredParanoidManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crypto Show documentation
Show all versions of crypto Show documentation
A set of libraries that can be used to encrypt content securely.
package com.codeheadsystems.crypto.manager;
import com.codeheadsystems.crypto.random.SecureRandomProvider;
/**
* This version only differs from the ParanoidManager only by enforcing the SecureRandomProvider.
* BSD-Style License 2016
*/
public class SecuredParanoidManager extends ParanoidManager {
public SecuredParanoidManager() throws ParanoidManagerException {
this(20);
}
public SecuredParanoidManager(int iterationExponential) throws ParanoidManagerException {
super(iterationExponential, new SecureRandomProvider());
}
}