Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ASN1TaggedObjectParser.java « asn1 « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2710954e089d43e2df92a74eed33cfddbb2e9edb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.spongycastle.asn1;

import java.io.IOException;

public interface ASN1TaggedObjectParser
    extends ASN1Encodable, InMemoryRepresentable
{
    public int getTagNo();
    
    public ASN1Encodable getObjectParser(int tag, boolean isExplicit)
        throws IOException;
}