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

18 lines
412 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
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;
}
}