what-the-bank/sources/org/bouncycastle/asn1/eac/RSAPublicKey.java

92 lines
3.3 KiB
Java

package org.bouncycastle.asn1.eac;
import java.math.BigInteger;
import java.util.Enumeration;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERSequence;
/* loaded from: classes6.dex */
public class RSAPublicKey extends PublicKeyDataObject {
private static int exponentValid = 2;
private static int modulusValid = 1;
private BigInteger exponent;
private BigInteger modulus;
private ASN1ObjectIdentifier usage;
private int valid = 0;
@Override // org.bouncycastle.asn1.ASN1Object, org.bouncycastle.asn1.ASN1Encodable
public ASN1Primitive toASN1Primitive() {
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
aSN1EncodableVector.add(this.usage);
aSN1EncodableVector.add(new UnsignedInteger(1, getModulus()));
aSN1EncodableVector.add(new UnsignedInteger(2, getPublicExponent()));
return new DERSequence(aSN1EncodableVector);
}
@Override // org.bouncycastle.asn1.eac.PublicKeyDataObject
public ASN1ObjectIdentifier getUsage() {
return this.usage;
}
public BigInteger getPublicExponent() {
return this.exponent;
}
public BigInteger getModulus() {
return this.modulus;
}
private void setModulus(UnsignedInteger unsignedInteger) {
int i = this.valid;
int i2 = modulusValid;
if ((i & i2) != 0) {
throw new IllegalArgumentException("Modulus already set");
}
this.valid = i | i2;
this.modulus = unsignedInteger.getValue();
}
private void setExponent(UnsignedInteger unsignedInteger) {
int i = this.valid;
int i2 = exponentValid;
if ((i & i2) != 0) {
throw new IllegalArgumentException("Exponent already set");
}
this.valid = i | i2;
this.exponent = unsignedInteger.getValue();
}
/* JADX INFO: Access modifiers changed from: package-private */
public RSAPublicKey(ASN1Sequence aSN1Sequence) {
Enumeration objects = aSN1Sequence.getObjects();
this.usage = ASN1ObjectIdentifier.getInstance(objects.nextElement());
while (objects.hasMoreElements()) {
UnsignedInteger unsignedInteger = UnsignedInteger.getInstance(objects.nextElement());
int tagNo = unsignedInteger.getTagNo();
if (tagNo == 1) {
setModulus(unsignedInteger);
} else {
if (tagNo != 2) {
StringBuilder sb = new StringBuilder("Unknown DERTaggedObject :");
sb.append(unsignedInteger.getTagNo());
sb.append("-> not an Iso7816RSAPublicKeyStructure");
throw new IllegalArgumentException(sb.toString());
}
setExponent(unsignedInteger);
}
}
if (this.valid != 3) {
throw new IllegalArgumentException("missing argument -> not an Iso7816RSAPublicKeyStructure");
}
}
public RSAPublicKey(ASN1ObjectIdentifier aSN1ObjectIdentifier, BigInteger bigInteger, BigInteger bigInteger2) {
this.usage = aSN1ObjectIdentifier;
this.modulus = bigInteger;
this.exponent = bigInteger2;
}
}