Caesarize
Package available on NPM
A simple node module built in Typescript that uses Caesar Cipher to encrypt and decrypt text!
What is Caesar Cipher?
Caesar Cipher is a substitution cipher that alters text by shifting the alphabet by a certain number determined by the user.
Installation:
npm install caesarize
Usage:
const caesarize = require("caesarize");
Example Output
Caesarize.encrypt("Hello, World!", 5);
Caesarize.encrypt("Hello, World!", -10);
Caesarize.decrypt("Mjqqt, Btwqi!", 5);
Caesarize.decrypt("Xubbe, Mehbt!", -10);