Encrypt and Decrypt Data using Caesar Cipher Encryption
npm install @themythicalcoder/caesar-cipher-encryptionencrypt method to encrypt the data.
const cipher = require("caesar-cipher-encryption");
var encryptedText = cipher("data",5,encrypt);
console.log(encryptedText);
`
Use the decrypt method to decrypt the data.
`
const cipher = require("caesar-cipher-encryption");
var decryptedText = cipher("data",5,decrypt);
console.log(decryptedText);
``