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

import java.io.IOException;

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