ciphervgnr

1.3.0 • Public • Published

cipher-vgnr

Vigenere Cipher in node

Usage:

const Encrypt = require('ciphervgnr');
 
let text = 'Kestrel Is Under Attack';
let key = 'Wardog';
 
//Encrypt
let code = Encrypt(text, key);  //output: Gejwfkh Ij Xbjar Rwhgyk
 
//Decrypt
Encrypt(code, key, true); //output: Kestrel Is Under Attack

Readme

Keywords

Package Sidebar

Install

npm i ciphervgnr

Weekly Downloads

14

Version

1.3.0

License

MIT

Unpacked Size

5.66 kB

Total Files

7

Last publish

Collaborators

  • wllr9505