# blowfish.js **Repository Path**: mirrors_node-modules/blowfish.js ## Basic Information - **Project Name**: blowfish.js - **Description**: Javascript blowfish encryption library - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2025-09-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README blowfish.js =========== Please visit [the blowfish.js home page](http://dren.ch/js_blowfish/) for more information. Demo ------ ``` var Blowfish = require('../blowfish'); var bf = new Blowfish('jaas is the way'); var encoding = bf.encrypt('Config_RsA+'); console.log(encoding); // D93DDE3FA9F885DED0258ACB404C510A var decoding = bf.decrypt(encoding); console.log(JSON.stringify(decoding)); // Config_RsA+ console.log(bf.decrypt('0a945741a53e60877183c1d314f5102209f526570957572b')); // ssheartTB007writer ``` Benchmark ------ ``` decrypt x 81,125 ops/sec ±0.94% (92 runs sampled) encrypt&decrypt x 48,610 ops/sec ±0.41% (99 runs sampled) ```