org.testifyproject.bouncycastle.pqc.crypto.gmss.GMSSKeyGenerationParameters Maven / Gradle / Ivy
The newest version!
package org.testifyproject.bouncycastle.pqc.crypto.gmss;
import java.security.SecureRandom;
import org.testifyproject.bouncycastle.crypto.KeyGenerationParameters;
public class GMSSKeyGenerationParameters
extends KeyGenerationParameters
{
private GMSSParameters params;
public GMSSKeyGenerationParameters(
SecureRandom random,
GMSSParameters params)
{
// XXX key size?
super(random, 1);
this.params = params;
}
public GMSSParameters getParameters()
{
return params;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy