Core Docs | Additional Modules Docs

String.prototype.md5


@Description: This string prototype allow you to easily convert any string to md5
@File: String/prototype/md5.js
@Example:
'hello world'.md5(); //return the md5 of the string 'hello world'

sb.md5


@Description: Converts a string into a unqiue, md5 one way hash
@File: String/prototype/md5.js
@Author: Paul Visco
@Version: 1.0 11/19/07
@Return: The md5'd string
@Example:
var myString = 'hello world';
var md5String = String.prototype.md5.hex.call(myString);