1package org.bouncycastle.asn1;
2
3import java.io.IOException;
4
5public interface ASN1SetParser
6    extends ASN1Encodable, InMemoryRepresentable
7{
8    public ASN1Encodable readObject()
9        throws IOException;
10}
11