* For quick testing only.
*
* @param args command line arguments.
*/
public static void main(final String[] args) {
final StrongPasswordEncryptor bpe = new StrongPasswordEncryptor();
logger.debug(bpe.encryptPassword("cry30"));
final String passw1 = "cry3011111111111111111111111111111111111111111111111111111111"; // NOPMD by r39 on 3/30/11 1:29 PM
final String passw2 = "cry301"; // NOPMD by r39 on 3/30/11 1:28 PM
final String encrypted1 = bpe.encryptPassword(passw1);
final String encrypted2 = bpe.encryptPassword(passw2);
logger.debug(bpe.checkPassword(passw1, encrypted1));
logger.debug(bpe.checkPassword(passw1, encrypted2));
logger.debug(bpe.checkPassword(passw2, encrypted1));
logger.debug(bpe.checkPassword(passw2, encrypted2));
logger.debug(encrypted1.length());
logger.debug(encrypted2.length());
}