I am trying to find documentation on String encrypt(String) anyone
know where I can get the java doc.
For example:
java.io.StreamTokenizer Input=new java.io.StreamTokenizer(System.in);
System.out.print("Input your secret password : ");
Input.nextToken();
String secret = new String(encrypt(Input.sval));
Works fine with no imports.
I am trying to convert the raw binary data in secret to something like
/0x0f /0xee /0x56 etc so I can store it in an xml node. Then convert
it back to binary when needed. I need to know the data specification
for secret to do this. I tried Class class and no luck.