paniers/public_html_admin/libs/jQuery-MD5
Adrien RENARD c09d71704b first commit 2023-12-22 00:37:04 +01:00
..
.gitignore first commit 2023-12-22 00:37:04 +01:00
README.md first commit 2023-12-22 00:37:04 +01:00
README.txt first commit 2023-12-22 00:37:04 +01:00
jquery.md5.js first commit 2023-12-22 00:37:04 +01:00

README.md

jQuery MD5 Plugin

Usage

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);

Requirements

None.

If jQuery is not available, the md5 function will be added to the global object:

var md5 = md5('value');

License

Released under the MIT license.

Source Code & Download