Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tmeasday/meteor-crypto-md5
https://github.com/tmeasday/meteor-crypto-md5
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tmeasday/meteor-crypto-md5
- Owner: tmeasday
- Created: 2012-09-18T01:28:39.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-29T05:29:43.000Z (over 10 years ago)
- Last Synced: 2024-10-11T00:27:15.362Z (3 months ago)
- Language: JavaScript
- Size: 120 KB
- Stars: 3
- Watchers: 1
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
# DEPRECATED
Please use https://atmospherejs.com/jparker/crypto-md5
MD5 algorithm from crypto.js
Install
-------Inside your project folder run
```
$ mrt add crypto-md5
```
CryptoJS is now available on **both the client and server**.Usage
-------
All methods are available under the `CryptoJS` namespace.Ex.
MD5 digest of a string:
```javascript
CryptoJS.MD5('some-string').toString()
// "7e99c70638e08303f2de53eee744a371"
```