what-the-bank/sources/org/bouncycastle/pqc/jcajce/spec/RainbowPublicKeySpec.java

35 lines
851 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.pqc.jcajce.spec;
import java.security.spec.KeySpec;
/* loaded from: classes6.dex */
public class RainbowPublicKeySpec implements KeySpec {
private short[][] coeffquadratic;
private short[] coeffscalar;
private short[][] coeffsingular;
private int docLength;
public int getDocLength() {
return this.docLength;
}
public short[][] getCoeffSingular() {
return this.coeffsingular;
}
public short[] getCoeffScalar() {
return this.coeffscalar;
}
public short[][] getCoeffQuadratic() {
return this.coeffquadratic;
}
public RainbowPublicKeySpec(int i, short[][] sArr, short[][] sArr2, short[] sArr3) {
this.docLength = i;
this.coeffquadratic = sArr;
this.coeffsingular = sArr2;
this.coeffscalar = sArr3;
}
}