Overview | IndexGodLikeMouse JavaScript Framework
FRAMES | NO FRAMES

PAJ.Security.SHA1.toHash( s )

PAJ.Security.SHA1.toHash( s )

Method for converting a string to a hex string.

Parameters:

s - The string to hash

Returns:

The hashed value.

Example:

var sha1 = new PAJ.Security.SHA1();
var s = "hello world"; //create a string to encrypt
alert( sha1.toHash(s) ); //display the hashed value



Overview | IndexGodLikeMouse JavaScript Framework
FRAMES | NO FRAMES