RosettaCodeData/Task/RIPEMD-160/JavaScript/ripemd-160.js

7 lines
187 B
JavaScript
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
// ! npm install ripemd160
const ripemd160 = require('ripemd160');
// Create hash of "Rosetta Code"
const hash = new ripemd160().update('Rosetta Code').digest('hex');
console.log(hash);