what-the-bank/sources/org/bouncycastle/asn1/cms/TimeStampTokenEvidence.java

66 lines
2.3 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.asn1.cms;
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.DERSequence;
/* loaded from: classes6.dex */
public class TimeStampTokenEvidence extends ASN1Object {
private TimeStampAndCRL[] timeStampAndCRLs;
public TimeStampAndCRL[] toTimeStampAndCRLArray() {
return this.timeStampAndCRLs;
}
@Override // org.bouncycastle.asn1.ASN1Object, org.bouncycastle.asn1.ASN1Encodable
public ASN1Primitive toASN1Primitive() {
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
int i = 0;
while (true) {
TimeStampAndCRL[] timeStampAndCRLArr = this.timeStampAndCRLs;
if (i == timeStampAndCRLArr.length) {
return new DERSequence(aSN1EncodableVector);
}
aSN1EncodableVector.add(timeStampAndCRLArr[i]);
i++;
}
}
public static TimeStampTokenEvidence getInstance(ASN1TaggedObject aSN1TaggedObject, boolean z) {
return getInstance(ASN1Sequence.getInstance(aSN1TaggedObject, z));
}
public static TimeStampTokenEvidence getInstance(Object obj) {
if (obj instanceof TimeStampTokenEvidence) {
return (TimeStampTokenEvidence) obj;
}
if (obj != null) {
return new TimeStampTokenEvidence(ASN1Sequence.getInstance(obj));
}
return null;
}
public TimeStampTokenEvidence(TimeStampAndCRL[] timeStampAndCRLArr) {
this.timeStampAndCRLs = timeStampAndCRLArr;
}
public TimeStampTokenEvidence(TimeStampAndCRL timeStampAndCRL) {
this.timeStampAndCRLs = r0;
TimeStampAndCRL[] timeStampAndCRLArr = {timeStampAndCRL};
}
private TimeStampTokenEvidence(ASN1Sequence aSN1Sequence) {
this.timeStampAndCRLs = new TimeStampAndCRL[aSN1Sequence.size()];
Enumeration objects = aSN1Sequence.getObjects();
int i = 0;
while (objects.hasMoreElements()) {
this.timeStampAndCRLs[i] = TimeStampAndCRL.getInstance(objects.nextElement());
i++;
}
}
}