Socket
Socket
Sign inDemoInstall

@dashincubator/ripemd160

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dashincubator/ripemd160

Browser-friendly ripemd160 hasher


Version published
Weekly downloads
8
increased by14.29%
Maintainers
1
Weekly downloads
 
Created
Source

@dashincubator/ripemd160

Fully browser-compatible ripemd160 for JavaScript.

Works just like the other node crypto APIs.

Install

Browser:

<script src="https://unpkg.com/@dashincubator/ripemd160/ripemd160.js"></script>
let RIPEMD160 = window.RIPEMD160;

Node:

npm install --save @dashincubator/ripemd160@2
let RIPEMD160 = require("@dashincubator/ripemd160");

Example

let hash = RIPEMD160.create();
hash.update("42");

let hex = hash.digest("hex");
console.log(hex);
// "0df020ba32aa9b8b904471ff582ce6b579bf8bc8"

History

This fork is for the purpose of making the package <script>-tag compatible for plain, old browser JavaScript (but not incompatible with node or bundlers)

  • Fork of https://github.com/rvagg/ripemd160

MIT

Copyright (c) 2022 AJ ONeal & Dash Incubator
Copyright (c) 2022 Rod Vagg
Copyright (c) 2016 crypto-browserify

Keywords

FAQs

Package last updated on 29 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc