Home | History | Annotate | Download | only in asn1
      1 package org.bouncycastle.asn1;
      2 
      3 import java.io.IOException;
      4 
      5 public interface ASN1SequenceParser
      6     extends ASN1Encodable, InMemoryRepresentable
      7 {
      8     ASN1Encodable readObject()
      9         throws IOException;
     10 }
     11