chfritz:cryptojs-hmac-md5

v0.1.0Published 11 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

meteor-cryptojs

[https://code.google.com/p/crypto-js/]

exports CryptoJS with only one method HmacMD5(text, secret) which will generate the MD5 hash of text using secret as a passphrase. Use toString() of the returned result to get the string (doh!).

Example:

CryptoJS.HmacMD5("test", "notverysecure").toString();