what-the-bank/sources/org/bouncycastle/pqc/crypto/mceliece/McElieceCCA2KeyParameters.java

18 lines
424 B
Java

package org.bouncycastle.pqc.crypto.mceliece;
import org.bouncycastle.crypto.params.AsymmetricKeyParameter;
/* loaded from: classes6.dex */
public class McElieceCCA2KeyParameters extends AsymmetricKeyParameter {
private String params;
public String getDigest() {
return this.params;
}
public McElieceCCA2KeyParameters(boolean z, String str) {
super(z);
this.params = str;
}
}