javascript-blowfish icon indicating copy to clipboard operation
javascript-blowfish copied to clipboard

Blowfish encryption library Javascript, jquery,coffeescript (blowfish.js)

Results 4 javascript-blowfish issues
Sort by recently updated
recently updated
newest added

I run code from your example const {Blowfish} = require('javascript-blowfish'); ``` const bf = new Blowfish("key", "cbc"); // Encrypt and encode to base64 const encrypted = bf.encrypt("secret message", "cbcvecto"); const...

Hello, I have unexpected results that are not the same as http://www.txtwizard.net/crypto and other websites. My code: ``` const bf = new Blowfish('secret', 'cbc'); const encrypted = bf.encrypt('message', '00000000'); const...

``` 22: const Blowfish = require('javascript-blowfish'); 23: const bf = new Blowfish("xxxxxxxxxxxx"); ``` > TypeError: Blowfish is not a constructor > at Object. (C:\Users\Piotr\Documents\Application\app.js:23:12) > at Module._compile (internal/modules/cjs/loader.js:689:30) > at...

Hi, I am using cbc mode. On Android and iOS encryption and decryption is working fine but when my application is run on windows there is a error while decrypting,...