62 lines
2.0 KiB
Java
62 lines
2.0 KiB
Java
package org.bouncycastle.pqc.asn1;
|
|
|
|
import org.bouncycastle.asn1.ASN1EncodableVector;
|
|
import org.bouncycastle.asn1.ASN1Integer;
|
|
import org.bouncycastle.asn1.ASN1Object;
|
|
import org.bouncycastle.asn1.ASN1OctetString;
|
|
import org.bouncycastle.asn1.ASN1Primitive;
|
|
import org.bouncycastle.asn1.ASN1Sequence;
|
|
import org.bouncycastle.asn1.DEROctetString;
|
|
import org.bouncycastle.asn1.DERSequence;
|
|
import org.bouncycastle.pqc.math.linearalgebra.GF2Matrix;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class McEliecePublicKey extends ASN1Object {
|
|
private final GF2Matrix g;
|
|
private final int n;
|
|
private final int t;
|
|
|
|
@Override // org.bouncycastle.asn1.ASN1Object, org.bouncycastle.asn1.ASN1Encodable
|
|
public ASN1Primitive toASN1Primitive() {
|
|
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
|
|
aSN1EncodableVector.add(new ASN1Integer(this.n));
|
|
aSN1EncodableVector.add(new ASN1Integer(this.t));
|
|
aSN1EncodableVector.add(new DEROctetString(this.g.getEncoded()));
|
|
return new DERSequence(aSN1EncodableVector);
|
|
}
|
|
|
|
public int getT() {
|
|
return this.t;
|
|
}
|
|
|
|
public int getN() {
|
|
return this.n;
|
|
}
|
|
|
|
public GF2Matrix getG() {
|
|
return new GF2Matrix(this.g);
|
|
}
|
|
|
|
public static McEliecePublicKey getInstance(Object obj) {
|
|
if (obj instanceof McEliecePublicKey) {
|
|
return (McEliecePublicKey) obj;
|
|
}
|
|
if (obj != null) {
|
|
return new McEliecePublicKey(ASN1Sequence.getInstance(obj));
|
|
}
|
|
return null;
|
|
}
|
|
|
|
private McEliecePublicKey(ASN1Sequence aSN1Sequence) {
|
|
this.n = ((ASN1Integer) aSN1Sequence.getObjectAt(0)).getValue().intValue();
|
|
this.t = ((ASN1Integer) aSN1Sequence.getObjectAt(1)).getValue().intValue();
|
|
this.g = new GF2Matrix(((ASN1OctetString) aSN1Sequence.getObjectAt(2)).getOctets());
|
|
}
|
|
|
|
public McEliecePublicKey(int i, int i2, GF2Matrix gF2Matrix) {
|
|
this.n = i;
|
|
this.t = i2;
|
|
this.g = new GF2Matrix(gF2Matrix);
|
|
}
|
|
}
|