All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gatling.recorder.internal.bouncycastle.asn1.cms.SignedDataParser Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.asn1.cms;

import java.io.IOException;

import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Integer;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Sequence;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1SequenceParser;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Set;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1SetParser;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1TaggedObjectParser;
import io.gatling.recorder.internal.bouncycastle.asn1.BERTags;

/**
 * Parser for RFC 5652: {@link SignedData} object.
 * 

*

 * SignedData ::= SEQUENCE {
 *     version CMSVersion,
 *     digestAlgorithms DigestAlgorithmIdentifiers,
 *     encapContentInfo EncapsulatedContentInfo,
 *     certificates [0] IMPLICIT CertificateSet OPTIONAL,
 *     crls [1] IMPLICIT CertificateRevocationLists OPTIONAL,
 *     signerInfos SignerInfos
 *   }
 * 
*/ public class SignedDataParser { private ASN1SequenceParser _seq; private ASN1Integer _version; private Object _nextObject; private boolean _certsCalled; private boolean _crlsCalled; public static SignedDataParser getInstance( Object o) throws IOException { if (o instanceof ASN1Sequence) { return new SignedDataParser(((ASN1Sequence)o).parser()); } if (o instanceof ASN1SequenceParser) { return new SignedDataParser((ASN1SequenceParser)o); } throw new IOException("unknown object encountered: " + o.getClass().getName()); } private SignedDataParser( ASN1SequenceParser seq) throws IOException { this._seq = seq; this._version = (ASN1Integer)seq.readObject(); } public ASN1Integer getVersion() { return _version; } public ASN1SetParser getDigestAlgorithms() throws IOException { Object o = _seq.readObject(); if (o instanceof ASN1Set) { return ((ASN1Set)o).parser(); } return (ASN1SetParser)o; } public ContentInfoParser getEncapContentInfo() throws IOException { return new ContentInfoParser((ASN1SequenceParser)_seq.readObject()); } public ASN1SetParser getCertificates() throws IOException { _certsCalled = true; _nextObject = _seq.readObject(); if (_nextObject instanceof ASN1TaggedObjectParser) { ASN1TaggedObjectParser o = (ASN1TaggedObjectParser)_nextObject; if (o.hasContextTag(0)) { ASN1SetParser certs = (ASN1SetParser)o.parseBaseUniversal(false, BERTags.SET_OF); _nextObject = null; return certs; } } return null; } public ASN1SetParser getCrls() throws IOException { if (!_certsCalled) { throw new IOException("getCerts() has not been called."); } _crlsCalled = true; if (_nextObject == null) { _nextObject = _seq.readObject(); } if (_nextObject instanceof ASN1TaggedObjectParser) { ASN1TaggedObjectParser o = (ASN1TaggedObjectParser)_nextObject; if (o.hasContextTag(1)) { ASN1SetParser crls = (ASN1SetParser)o.parseBaseUniversal(false, BERTags.SET_OF); _nextObject = null; return crls; } } return null; } public ASN1SetParser getSignerInfos() throws IOException { if (!_certsCalled || !_crlsCalled) { throw new IOException("getCerts() and/or getCrls() has not been called."); } if (_nextObject == null) { _nextObject = _seq.readObject(); } return (ASN1SetParser)_nextObject; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy