com.fitbur.bouncycastle.crypto.params.ParametersWithRandom Maven / Gradle / Ivy
package com.fitbur.bouncycastle.crypto.params;
import com.fitbur.bouncycastle.crypto.CipherParameters;
import java.security.SecureRandom;
public class ParametersWithRandom
implements CipherParameters
{
private SecureRandom random;
private CipherParameters parameters;
public ParametersWithRandom(
CipherParameters parameters,
SecureRandom random)
{
this.random = random;
this.parameters = parameters;
}
public ParametersWithRandom(
CipherParameters parameters)
{
this(parameters, new SecureRandom());
}
public SecureRandom getRandom()
{
return random;
}
public CipherParameters getParameters()
{
return parameters;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy