what-the-bank/sources/org/bouncycastle/asn1/x509/CertificateList.java

99 lines
3.1 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.asn1.x509;
import java.util.Enumeration;
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.x500.X500Name;
import org.bouncycastle.asn1.x509.TBSCertList;
/* loaded from: classes6.dex */
public class CertificateList extends ASN1Object {
int hashCodeValue;
boolean isHashCodeSet = false;
DERBitString sig;
AlgorithmIdentifier sigAlgId;
TBSCertList tbsCertList;
@Override // org.bouncycastle.asn1.ASN1Object, org.bouncycastle.asn1.ASN1Encodable
public ASN1Primitive toASN1Primitive() {
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
aSN1EncodableVector.add(this.tbsCertList);
aSN1EncodableVector.add(this.sigAlgId);
aSN1EncodableVector.add(this.sig);
return new DERSequence(aSN1EncodableVector);
}
@Override // org.bouncycastle.asn1.ASN1Object
public int hashCode() {
if (!this.isHashCodeSet) {
this.hashCodeValue = super.hashCode();
this.isHashCodeSet = true;
}
return this.hashCodeValue;
}
public int getVersionNumber() {
return this.tbsCertList.getVersionNumber();
}
public Time getThisUpdate() {
return this.tbsCertList.getThisUpdate();
}
public TBSCertList getTBSCertList() {
return this.tbsCertList;
}
public AlgorithmIdentifier getSignatureAlgorithm() {
return this.sigAlgId;
}
public DERBitString getSignature() {
return this.sig;
}
public TBSCertList.CRLEntry[] getRevokedCertificates() {
return this.tbsCertList.getRevokedCertificates();
}
public Enumeration getRevokedCertificateEnumeration() {
return this.tbsCertList.getRevokedCertificateEnumeration();
}
public Time getNextUpdate() {
return this.tbsCertList.getNextUpdate();
}
public X500Name getIssuer() {
return this.tbsCertList.getIssuer();
}
public static CertificateList getInstance(ASN1TaggedObject aSN1TaggedObject, boolean z) {
return getInstance(ASN1Sequence.getInstance(aSN1TaggedObject, z));
}
public static CertificateList getInstance(Object obj) {
if (obj instanceof CertificateList) {
return (CertificateList) obj;
}
if (obj != null) {
return new CertificateList(ASN1Sequence.getInstance(obj));
}
return null;
}
public CertificateList(ASN1Sequence aSN1Sequence) {
if (aSN1Sequence.size() != 3) {
throw new IllegalArgumentException("sequence wrong size for CertificateList");
}
this.tbsCertList = TBSCertList.getInstance(aSN1Sequence.getObjectAt(0));
this.sigAlgId = AlgorithmIdentifier.getInstance(aSN1Sequence.getObjectAt(1));
this.sig = DERBitString.getInstance(aSN1Sequence.getObjectAt(2));
}
}