Home | History | Annotate | Download | only in asn1
      1 package org.bouncycastle.asn1;
      2 
      3 /**
      4  * basic interface for DER string objects.
      5  */
      6 public interface DERString
      7 {
      8     public String getString();
      9 }
     10