Blowfish
Blowfish encryption library for browsers and Node.js.
Find the changelog in CHANGELOG.md
Table of Contents
Installation
Take latest version here or with npm:
npm install egoroof-blowfish --save
JS modules
The library is only deployed in native JS modules, so in browsers you have to use script
with type module
:
<script type="module">
import { Blowfish } from 'https://your-host/blowfish.mjs';
</script>
Or bundle the library to your code.
In Nodejs it imports easily:
import { Blowfish } from 'egoroof-blowfish';
Usage
All input data including key, IV, plaintext and ciphertext should be a String
or ArrayBuffer
/ Buffer
.
Strings support all unicode including emoji ✨.
Example
import { Blowfish } from 'egoroof-blowfish';
const bf = new Blowfish('super key', Blowfish.MODE.ECB, Blowfish.PADDING.NULL);
bf.setIv('abcdefgh');
const encoded = bf.encode('input text even with emoji 🎅');
const decoded = bf.decode(encoded, Blowfish.TYPE.STRING);
Block cipher mode of operation
https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation
Blowfish.MODE.ECB;
Blowfish.MODE.CBC;
Padding
http://www.di-mgt.com.au/cryptopad.html
Blowfish.PADDING.PKCS5;
Blowfish.PADDING.ONE_AND_ZEROS;
Blowfish.PADDING.LAST_BYTE;
Blowfish.PADDING.NULL;
Blowfish.PADDING.SPACES;
Return type
Which type of data should return method decode
:
Blowfish.TYPE.STRING;
Blowfish.TYPE.UINT8_ARRAY;