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