Overview | IndexGodLikeMouse JavaScript Framework
FRAMES | NO FRAMES

PAJ.Security.MD4.toBase64( s )

PAJ.Security.MD4.toBase64( s )

Method for converting a string to a base 64 string.

Parameters:

s - The value to base64 encode.

Returns:

The hashed value.

Example:

var md4 = new PAJ.Security.MD4();
var s = "hello world"; //create a string to encrypt
alert( md4.toBase64(s) ); //display the base64 value



Overview | IndexGodLikeMouse JavaScript Framework
FRAMES | NO FRAMES