/* 
 * Description: Hash generator tool
 *
 * Author: Bill Kearney, wkearney99@hotmail.com
 *
 * License: this is public domain code.  use it as you see fit but mention where you got it.
 *
 * Requires: Paul Johnston's Javascript crypto routines
 *            see: http://pajhome.org.uk/crypt/md5 for details.
 *
 * Purpose:
 *          Unwanted e-mail spam is a horrible thing.  There's little that can be
 *          done about it save for hiding from the spammers.  To that end this 
 *          page will let you create an encoded hash string that can't be 
 *          as easily stolen by spammers.  The hashed string would require
 *          a program to understand it's a hash and how to un-hash it.  Spammers
 *          might get smart enough to untangle this eventually.  But meanwhile
 *          this is one way for you to list an e-mail address and have it be 
 *          readable by people being responsible about it.
 *          
 */

gAddPrefix = false;

function hashcalcSHA1(strHash) {
	return(calcSHA1(strHash));
}

function hashcalcSHA1pass(strHash) {
	return(calcSHA1pass(strHash));
}

function hashcalcMD4(strHash) {
	return(calcMD4(strHash));
}

function hashcalcMD5(strHash) {
	return(calcMD5(strHash));
}

