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

89 lines
3.3 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.asn1.cms;
import java.io.IOException;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1Integer;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.ASN1SequenceParser;
import org.bouncycastle.asn1.ASN1Set;
import org.bouncycastle.asn1.ASN1SetParser;
import org.bouncycastle.asn1.ASN1TaggedObjectParser;
/* loaded from: classes6.dex */
public class SignedDataParser {
private boolean _certsCalled;
private boolean _crlsCalled;
private Object _nextObject;
private ASN1SequenceParser _seq;
private ASN1Integer _version;
public ASN1Integer getVersion() {
return this._version;
}
public ASN1SetParser getSignerInfos() throws IOException {
if (!this._certsCalled || !this._crlsCalled) {
throw new IOException("getCerts() and/or getCrls() has not been called.");
}
if (this._nextObject == null) {
this._nextObject = this._seq.readObject();
}
return (ASN1SetParser) this._nextObject;
}
public ContentInfoParser getEncapContentInfo() throws IOException {
return new ContentInfoParser((ASN1SequenceParser) this._seq.readObject());
}
public ASN1SetParser getDigestAlgorithms() throws IOException {
ASN1Encodable readObject = this._seq.readObject();
return readObject instanceof ASN1Set ? ((ASN1Set) readObject).parser() : (ASN1SetParser) readObject;
}
public ASN1SetParser getCrls() throws IOException {
if (!this._certsCalled) {
throw new IOException("getCerts() has not been called.");
}
this._crlsCalled = true;
if (this._nextObject == null) {
this._nextObject = this._seq.readObject();
}
Object obj = this._nextObject;
if (!(obj instanceof ASN1TaggedObjectParser) || ((ASN1TaggedObjectParser) obj).getTagNo() != 1) {
return null;
}
ASN1SetParser aSN1SetParser = (ASN1SetParser) ((ASN1TaggedObjectParser) this._nextObject).getObjectParser(17, false);
this._nextObject = null;
return aSN1SetParser;
}
public ASN1SetParser getCertificates() throws IOException {
this._certsCalled = true;
ASN1Encodable readObject = this._seq.readObject();
this._nextObject = readObject;
if (!(readObject instanceof ASN1TaggedObjectParser) || ((ASN1TaggedObjectParser) readObject).getTagNo() != 0) {
return null;
}
ASN1SetParser aSN1SetParser = (ASN1SetParser) ((ASN1TaggedObjectParser) this._nextObject).getObjectParser(17, false);
this._nextObject = null;
return aSN1SetParser;
}
public static SignedDataParser getInstance(Object obj) throws IOException {
if (obj instanceof ASN1Sequence) {
return new SignedDataParser(((ASN1Sequence) obj).parser());
}
if (obj instanceof ASN1SequenceParser) {
return new SignedDataParser((ASN1SequenceParser) obj);
}
StringBuilder sb = new StringBuilder("unknown object encountered: ");
sb.append(obj.getClass().getName());
throw new IOException(sb.toString());
}
private SignedDataParser(ASN1SequenceParser aSN1SequenceParser) throws IOException {
this._seq = aSN1SequenceParser;
this._version = (ASN1Integer) aSN1SequenceParser.readObject();
}
}