https://github.com/browserify/ripemd160
JavaScript component to compute the RIPEMD160 hash of strings or bytes.
https://github.com/browserify/ripemd160
Last synced: about 2 months ago
JSON representation
JavaScript component to compute the RIPEMD160 hash of strings or bytes.
- Host: GitHub
- URL: https://github.com/browserify/ripemd160
- Owner: browserify
- License: mit
- Created: 2013-11-04T04:58:04.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2025-09-23T03:21:28.000Z (5 months ago)
- Last Synced: 2025-09-23T03:24:49.117Z (5 months ago)
- Language: JavaScript
- Size: 61.5 KB
- Stars: 34
- Watchers: 5
- Forks: 21
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ripemd160
[](https://www.npmjs.org/package/ripemd160)
[](https://travis-ci.org/crypto-browserify/ripemd160)
[](https://david-dm.org/crypto-browserify/ripemd160#info=dependencies)
[](https://github.com/feross/standard)
Node style `ripemd160` on pure JavaScript.
## Example
```js
var RIPEMD160 = require('ripemd160')
console.log(new RIPEMD160().update('42').digest('hex'))
// => 0df020ba32aa9b8b904471ff582ce6b579bf8bc8
var ripemd160stream = new RIPEMD160()
ripemd160stream.end('42')
console.log(ripemd160stream.read().toString('hex'))
// => 0df020ba32aa9b8b904471ff582ce6b579bf8bc8
```
## LICENSE
MIT