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

port.org.bouncycastle.asn1.BERSequenceParser Maven / Gradle / Ivy

There is a newer version: 6.0.d4j.2
Show newest version
package port.org.bouncycastle.asn1;

import java.io.IOException;

public class BERSequenceParser implements ASN1SequenceParser {

	private ASN1StreamParser _parser;

	BERSequenceParser(ASN1StreamParser parser) {
		this._parser = parser;
	}

	@Override
	public ASN1Encodable readObject() throws IOException {
		return _parser.readObject();
	}

	@Override
	public ASN1Primitive getLoadedObject() throws IOException {
		return new BERSequence(_parser.readVector());
	}

	@Override
	public ASN1Primitive toASN1Primitive() {
		try {
			return getLoadedObject();
		} catch (IOException e) {
			throw new IllegalStateException(e.getMessage());
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy