Skip to content

WLLR9505/cipher-vgnr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published