19 lines
534 B
Java
19 lines
534 B
Java
|
package org.bouncycastle.pqc.crypto.gmss;
|
||
|
|
||
|
import java.security.SecureRandom;
|
||
|
import org.bouncycastle.crypto.KeyGenerationParameters;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class GMSSKeyGenerationParameters extends KeyGenerationParameters {
|
||
|
private GMSSParameters params;
|
||
|
|
||
|
public GMSSParameters getParameters() {
|
||
|
return this.params;
|
||
|
}
|
||
|
|
||
|
public GMSSKeyGenerationParameters(SecureRandom secureRandom, GMSSParameters gMSSParameters) {
|
||
|
super(secureRandom, 1);
|
||
|
this.params = gMSSParameters;
|
||
|
}
|
||
|
}
|