ripemd160

Compute ripemd160 of bytes or strings.

MIT 9 个版本
安装
npm install ripemd160
yarn add ripemd160
pnpm add ripemd160
bun add ripemd160
README

ripemd160

NPM Package Build Status Dependency status

js-standard-style

Node style ripemd160 on pure JavaScript.

Example

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

版本列表
2.0.3 2025-09-23
2.0.2 2018-04-19
2.0.1 2016-06-22
2.0.0 2016-04-11
1.0.1 2015-05-05
1.0.0 2015-01-14
0.2.1 2014-12-31
0.2.0 2014-03-09
0.1.0 2013-11-21