Method Summary |
|
final public static String | crypt(String salt, String original) Encrypt a password given the cleartext password and a "salt".
Parameters: salt - A two-character string representing the salt used toiterate the encryption engine in lots of different ways. |
final public static String | crypt(String original) Encrypt a password given the cleartext password. |
final public static boolean | matches(String encryptedPassword, String enteredPassword) Check that enteredPassword encrypts to
encryptedPassword.
Parameters: encryptedPassword - The encryptedPassword. |