aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/asn1/ASN1ApplicationSpecificParser.java
blob: 5a48fbf5a8f7d04a3b8aaf3624f32ad789f5a914 (plain)
1
2
3
4
5
6
7
8
9
10
package org.spongycastle.asn1;

import java.io.IOException;

public interface ASN1ApplicationSpecificParser
    extends ASN1Encodable, InMemoryRepresentable
{
    ASN1Encodable readObject()
        throws IOException;
}