Create (hex-encoded) MD5 hash of a given string value:
var md5 = $.md5('value');
Create (hex-encoded) HMAC-MD5 hash of a given string value and key:
var md5 = $.md5('value', 'key');
Create raw MD5 hash of a given string value:
var md5 = $.md5('value', null, true);
Create raw HMAC-MD5 hash of a given string value and key:
var md5 = $.md5('value', 'key', true);
None.
If jQuery is not available, the md5 function will be added to the global object:
var md5 = md5('value');
Released under the MIT license.
- Browse and checkout the source code.
- Download the project to add the plugin to your website.