Package org.apache.commons.ssl.asn1

Examples of org.apache.commons.ssl.asn1.DERUTF8String


      {
         text = text.substring(0, DISPLAY_TEXT_MAXIMUM_SIZE);
      }
     
      contentType = CONTENT_TYPE_UTF8STRING;
      contents = new DERUTF8String(text);
   }
View Full Code Here


        else if (oid.equals(X509Name.C) || oid.equals(X509Name.SN) || oid.equals(X509Name.DN_QUALIFIER))
        {
             return new DERPrintableString(value);
        }       
       
        return new DERUTF8String(value);
    }
View Full Code Here

            {
                 return new DERPrintableString(value);
            }
        }
       
        return new DERUTF8String(value);
    }
View Full Code Here

        this.string = string;
    }

    public DirectoryString(String string)
    {
        this.string = new DERUTF8String(string);
    }
View Full Code Here

TOP

Related Classes of org.apache.commons.ssl.asn1.DERUTF8String

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.