NAME Digest.MD5 - JavaScript Interface to the MD5 Algorithm SYNOPSIS // Import From JSAN JSAN.use('Digest.MD5', ':all'); var data = "Hello you crazy cat!"; var digest = md5(data); var digestHex = md5Hex(data); var digestB64 = md5Base64(data); DESCRIPTON Functions md5() Returns an MD5 hash of the data passed to it. md5Hex() Returns a hex encoded MD5 hash of the data passed to it. md5Base64() Returns a base64 encoded MD5 hash of the data passed to it. Exporting To export all functions, use the ":all" export tag. To export only a set of functions, name them explicitly on the "JSAN.use()" call. JSAN.use('Digest.MD5', 'md5Hex'); SEE ALSO JSAN. AUTHOR Casey West, . COPYRIGHT Copyright (c) 2005 Casey West. All rights reserved. This module is free software; you can redistribute it and/or modify it under the terms of the Artistic license.