28 lines
740 B
Java
28 lines
740 B
Java
package org.bouncycastle.pqc.crypto.rainbow;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class RainbowPublicKeyParameters extends RainbowKeyParameters {
|
|
private short[][] coeffquadratic;
|
|
private short[] coeffscalar;
|
|
private short[][] coeffsingular;
|
|
|
|
public short[][] getCoeffSingular() {
|
|
return this.coeffsingular;
|
|
}
|
|
|
|
public short[] getCoeffScalar() {
|
|
return this.coeffscalar;
|
|
}
|
|
|
|
public short[][] getCoeffQuadratic() {
|
|
return this.coeffquadratic;
|
|
}
|
|
|
|
public RainbowPublicKeyParameters(int i, short[][] sArr, short[][] sArr2, short[] sArr3) {
|
|
super(false, i);
|
|
this.coeffquadratic = sArr;
|
|
this.coeffsingular = sArr2;
|
|
this.coeffscalar = sArr3;
|
|
}
|
|
}
|