35 lines
851 B
Java
35 lines
851 B
Java
|
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;
|
||
|
}
|
||
|
}
|