The Caesar Cipher NPM package provides a simple and effective way to encrypt and decrypt data using the Caesar cipher technique. This package can be used to enhance the security of your applications by encrypting sensitive information.
Check out the demo Here
By encrypting emails or phone numbers with the Caesar cipher, you can maintain the privacy of your users' data while still allowing for searches within the encrypted data. This is useful in scenarios where data privacy is crucial but search functionality is required.
Storing sensitive data, such as user credentials or personal information, in an encrypted format enhances the security of your application. Even if the data is accessed without authorization, it remains unreadable without the correct decryption key.
To install the package, run the following command:
npm i @omar-sarfraz/caesar-cipher
const { encrypt, decrypt } = require("@omar-sarfraz/caesar-cipher");
try {
const val = "test@gmail.com";
const encryptedVal = encrypt(5, val);
console.log(encryptedVal); // yjxy@lrfnq.htr
const decryptedVal = decrypt(5, encryptedVal);
console.log(decryptedVal); // test@gmail.com
} catch (e) {
console.log("Error =>", e.message);
}
Fork the repository to your own GitHub account and then clone it to your local machine.
git clone https://github.com/omar-sarfraz/caesar-cipher
Create a new branch for your feature or bug fix. Use a descriptive name for your branch.
git checkout -b feature/your-feature-name
Install the necessary dependencies using npm to run the project locally.
npm install
Then make your changes.
npm test
Commit your changes with a descriptive commit message.
git add .
git commit -m "Add feature/fix: Describe your changes here"
Push your branch to your forked repository on GitHub.
git push origin feature/your-feature-name
Go to the original repository on GitHub and create a pull request. Provide a clear and concise description of your changes and why they should be merged.