what-the-bank/sources/org/bouncycastle/asn1/cmp/PKIMessage.java

107 lines
3.8 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.asn1.cmp;
import java.util.Enumeration;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.ASN1TaggedObject;
import org.bouncycastle.asn1.DERBitString;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.asn1.DERTaggedObject;
/* loaded from: classes6.dex */
public class PKIMessage extends ASN1Object {
private PKIBody body;
private ASN1Sequence extraCerts;
private PKIHeader header;
private DERBitString protection;
@Override // org.bouncycastle.asn1.ASN1Object, org.bouncycastle.asn1.ASN1Encodable
public ASN1Primitive toASN1Primitive() {
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
aSN1EncodableVector.add(this.header);
aSN1EncodableVector.add(this.body);
addOptional(aSN1EncodableVector, 0, this.protection);
addOptional(aSN1EncodableVector, 1, this.extraCerts);
return new DERSequence(aSN1EncodableVector);
}
public DERBitString getProtection() {
return this.protection;
}
public PKIHeader getHeader() {
return this.header;
}
public CMPCertificate[] getExtraCerts() {
ASN1Sequence aSN1Sequence = this.extraCerts;
if (aSN1Sequence == null) {
return null;
}
int size = aSN1Sequence.size();
CMPCertificate[] cMPCertificateArr = new CMPCertificate[size];
for (int i = 0; i < size; i++) {
cMPCertificateArr[i] = CMPCertificate.getInstance(this.extraCerts.getObjectAt(i));
}
return cMPCertificateArr;
}
public PKIBody getBody() {
return this.body;
}
public static PKIMessage getInstance(Object obj) {
if (obj instanceof PKIMessage) {
return (PKIMessage) obj;
}
if (obj != null) {
return new PKIMessage(ASN1Sequence.getInstance(obj));
}
return null;
}
private void addOptional(ASN1EncodableVector aSN1EncodableVector, int i, ASN1Encodable aSN1Encodable) {
if (aSN1Encodable != null) {
aSN1EncodableVector.add(new DERTaggedObject(true, i, aSN1Encodable));
}
}
public PKIMessage(PKIHeader pKIHeader, PKIBody pKIBody, DERBitString dERBitString, CMPCertificate[] cMPCertificateArr) {
this.header = pKIHeader;
this.body = pKIBody;
this.protection = dERBitString;
if (cMPCertificateArr != null) {
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
for (CMPCertificate cMPCertificate : cMPCertificateArr) {
aSN1EncodableVector.add(cMPCertificate);
}
this.extraCerts = new DERSequence(aSN1EncodableVector);
}
}
public PKIMessage(PKIHeader pKIHeader, PKIBody pKIBody, DERBitString dERBitString) {
this(pKIHeader, pKIBody, dERBitString, null);
}
public PKIMessage(PKIHeader pKIHeader, PKIBody pKIBody) {
this(pKIHeader, pKIBody, null, null);
}
private PKIMessage(ASN1Sequence aSN1Sequence) {
Enumeration objects = aSN1Sequence.getObjects();
this.header = PKIHeader.getInstance(objects.nextElement());
this.body = PKIBody.getInstance(objects.nextElement());
while (objects.hasMoreElements()) {
ASN1TaggedObject aSN1TaggedObject = (ASN1TaggedObject) objects.nextElement();
if (aSN1TaggedObject.getTagNo() == 0) {
this.protection = DERBitString.getInstance(aSN1TaggedObject, true);
} else {
this.extraCerts = ASN1Sequence.getInstance(aSN1TaggedObject, true);
}
}
}
}