Class ASN1GeneralString

    • Method Detail

      • getInstance

        public static ASN1GeneralString getInstance​(java.lang.Object obj)
        Return a GeneralString from the given object.
        Parameters:
        obj - the object we want converted.
        Returns:
        an ASN1GeneralString instance, or null.
        Throws:
        java.lang.IllegalArgumentException - if the object cannot be converted.
      • getInstance

        public static ASN1GeneralString getInstance​(ASN1TaggedObject taggedObject,
                                                    boolean explicit)
        Return a GeneralString from a tagged object.
        Parameters:
        taggedObject - the tagged object holding the object we want
        explicit - true if the object is meant to be explicitly tagged false otherwise.
        Returns:
        an ASN1GeneralString instance.
        Throws:
        java.lang.IllegalArgumentException - if the tagged object cannot be converted.
      • getString

        public final java.lang.String getString()
        Return a Java String representation of our contained String.
        Specified by:
        getString in interface ASN1String
        Returns:
        a Java String representing our contents.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • getOctets

        public final byte[] getOctets()
        Return a byte array representation of our contained String.
        Returns:
        a byte array representing our contents.