what-the-bank/sources/org/bouncycastle/pqc/crypto/rainbow/RainbowKeyParameters.java

18 lines
412 B
Java

package org.bouncycastle.pqc.crypto.rainbow;
import org.bouncycastle.crypto.params.AsymmetricKeyParameter;
/* loaded from: classes6.dex */
public class RainbowKeyParameters extends AsymmetricKeyParameter {
private int docLength;
public int getDocLength() {
return this.docLength;
}
public RainbowKeyParameters(boolean z, int i) {
super(z);
this.docLength = i;
}
}