Method Summary |
|
public static HashPassword | getHashPassword(String password) Return the haspassword object from a string. |
public static String | hashPassword(char[] pwd) Performs the default algorithm hashing on the supplied password and
return a char array containing the password as a printable string. |
public static String | hashPassword(char[] pwd, String algo) Performs an algorithm specified by the user hashing on the supplied
password and return a char array containing the encrypted password as a
printable string. |
public static String | hashPassword(String string, String algo) Performs an algorithm specified by the user hashing on the supplied
password and return a char array containing the encrypted password as a
printable string. |
public static char[] | hexDump(byte[] src) Turn a byte array into a char array containing a printable hex
representation of the bytes. |
public static void | smudge(char[] pwd) Zero the contents of the specified array. |
public static void | smudge(byte[] pwd) Zero the contents of the specified array. |