Decode an encrypted password
843810Apr 30 2002 — edited May 1 2002Hi
I have stored encrypted password in base64 format .
String password =new sun.misc.BASE64Encoder().encode(password);
Now i want to retrieve as byte[] by decoding the string to decrypt it .
how should i do ?
thanks