Overview | IndexGodLikeMouse JavaScript Framework
FRAMES | NO FRAMES

PAJ.Security.SHA1.toHashSet( key, value )

PAJ.Security.SHA1.toHashSet( key, value )

Method for converting a string to a hex string.

Parameters:

key - The key to hash.

value - The value to hash.

Returns:

The hashed value.

Example:

var sha1 = new PAJ.Security.SHA1();
var key = "hello"; //create a key string to encrypt
var value = "world"; //create a value string to encrypt
alert( sha1.toHashSet(key,value) ); //display the hashset value



Overview | IndexGodLikeMouse JavaScript Framework
FRAMES | NO FRAMES