60 lines
1.8 KiB
Java
60 lines
1.8 KiB
Java
|
package org.bouncycastle.asn1.eac;
|
||
|
|
||
|
import java.math.BigInteger;
|
||
|
import org.bouncycastle.asn1.ASN1Object;
|
||
|
import org.bouncycastle.asn1.ASN1OctetString;
|
||
|
import org.bouncycastle.asn1.ASN1Primitive;
|
||
|
import org.bouncycastle.asn1.ASN1TaggedObject;
|
||
|
import org.bouncycastle.asn1.DEROctetString;
|
||
|
import org.bouncycastle.asn1.DERTaggedObject;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class UnsignedInteger extends ASN1Object {
|
||
|
private int tagNo;
|
||
|
private BigInteger value;
|
||
|
|
||
|
@Override // org.bouncycastle.asn1.ASN1Object, org.bouncycastle.asn1.ASN1Encodable
|
||
|
public ASN1Primitive toASN1Primitive() {
|
||
|
return new DERTaggedObject(false, this.tagNo, new DEROctetString(convertValue()));
|
||
|
}
|
||
|
|
||
|
public BigInteger getValue() {
|
||
|
return this.value;
|
||
|
}
|
||
|
|
||
|
public int getTagNo() {
|
||
|
return this.tagNo;
|
||
|
}
|
||
|
|
||
|
public static UnsignedInteger getInstance(Object obj) {
|
||
|
if (obj instanceof UnsignedInteger) {
|
||
|
return (UnsignedInteger) obj;
|
||
|
}
|
||
|
if (obj != null) {
|
||
|
return new UnsignedInteger(ASN1TaggedObject.getInstance(obj));
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
private byte[] convertValue() {
|
||
|
byte[] byteArray = this.value.toByteArray();
|
||
|
if (byteArray[0] != 0) {
|
||
|
return byteArray;
|
||
|
}
|
||
|
int length = byteArray.length - 1;
|
||
|
byte[] bArr = new byte[length];
|
||
|
System.arraycopy(byteArray, 1, bArr, 0, length);
|
||
|
return bArr;
|
||
|
}
|
||
|
|
||
|
private UnsignedInteger(ASN1TaggedObject aSN1TaggedObject) {
|
||
|
this.tagNo = aSN1TaggedObject.getTagNo();
|
||
|
this.value = new BigInteger(1, ASN1OctetString.getInstance(aSN1TaggedObject, false).getOctets());
|
||
|
}
|
||
|
|
||
|
public UnsignedInteger(int i, BigInteger bigInteger) {
|
||
|
this.tagNo = i;
|
||
|
this.value = bigInteger;
|
||
|
}
|
||
|
}
|