All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codeheadsystems.crypto.manager.SecuredParanoidManager Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
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());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy