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

org.bouncycastle.asn1.ASN1TaggedObjectParser Maven / Gradle / Ivy

There is a newer version: 1.70_1
Show newest version
package org.bouncycastle.asn1;

import java.io.IOException;

/**
 * Interface for the parsing of a generic tagged ASN.1 object.
 */
public interface ASN1TaggedObjectParser
    extends ASN1Encodable, InMemoryRepresentable
{
    /**
     * Return the tag number associated with the underlying tagged object.
     * @return the object's tag number.
     */
    int getTagNo();

    /**
     * Return a parser for the actual object tagged.
     *
     * @param tag the primitive tag value for the object tagged originally.
     * @param isExplicit true if the tagging was done explicitly.
     * @return a parser for the tagged object.
     * @throws IOException if a parser cannot be constructed.
     */
    ASN1Encodable getObjectParser(int tag, boolean isExplicit)
        throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy