ripemd160-js

2.0.2 • Public • Published

RIPEMD1600 logo

Ripemd160-js

NPM Package CI status License: MIT

A Universal JavaScript RIPEMD160 cryptographic hash function.

Features

  • Zero dependency
  • ~7 KB

Requirements

Supported runtime environments:

Installation

For Node.js, to install ripemd160-js run:

npm install ripemd160-js

For Deno

import ripemd160 from "https://deno.land/x/ripemd160js/ripemd160.mjs";

Examples

Import For ESM

import ripemd160 from "ripemd160-js/ripemd160.mjs";

Import For CJS

(async function () {
  const { default: ripemd160 } = await import("ripemd160-js/ripemd160.mjs");
})();

Digest text

ripemd160("hello").then(console.log);

The logged output will be “108f07b8382412612c048d07d13f814118445acd”.

Digest Array

ripemd160(Uint8Array.from([1, 2, 3])).then(console.log);

The logged output will be “79f901da2609f020adadbf2e5f68a16c8c3f7d57” -->

Exports

ripemd160 exports two files.

Package Sidebar

Install

npm i ripemd160-js

Weekly Downloads

21

Version

2.0.2

License

MIT

Unpacked Size

33.2 kB

Total Files

4

Last publish

Collaborators

  • pur3miish