![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
substitutioncipher-js
Advanced tools
This package helps in using substitution cipher inside any package
Substitution cipher is the most commonly used cipher and includes an algorithm of substituting every plain text character for every cipher text character. In this process, alphabets are jumbled in comparison with Caesar cipher algorithm.
you can install this package using npm command
npm i substitutioncipher-js
substitutioncipher-js
contains two function encrypt
and decrypt
.
//import library
import {encrypt,decrypt} from ('substitutioncipher-js');
//declare plaintext
let plainText = "Hello World";
//declare key
let key=5;
//optional space default true if false give result ignoring space
let space=true
//encrypt function to get ciphertext
var cipherText = encrypt(plainText,key,space);
console.log("encryption",cipherText); //output : Mjqqt btwqi
//decrypt function to get plaintext
let plaintext = decrypt(cipherText,key);
console.log("Decryption",plaintext); //output : Hello World
This project is under MIT licence. please read License
file.
Note: the substitution cipher is easily decryptable
FAQs
This package helps in using substitution cipher inside any package
The npm package substitutioncipher-js receives a total of 1 weekly downloads. As such, substitutioncipher-js popularity was classified as not popular.
We found that substitutioncipher-js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.