imageshuffler
v1.0.9
Published
Encrypts Image into another one with key
Downloads
6
Readme
Image Shuffler
Image to Image Encryption (entry level)
Installation
npm install imageshuffler
yarn add imageshuffler
Usage
Encryption
const imgShuffler = require("imageshuffler");
imgShuffler.encryptImage("picture.png", "someSecretKey");
Decryption
target file parameter is not mandatory.
const imgShuffler = require("imageshuffler");
imgShuffler.decryptImage("hidden.png", "someSecretKey", "target_file.png");
License
MIT © ahgsql