encryption-tool-ts-fox_hunt
v1.0.4
Published
Ascii encryption tool for strings
Downloads
15
Maintainers
Readme
String Encryption
Encryption of strings using varying ascii values
Installation
Install the dependencies and devDependencies and start the server.
npm i encryption-tool-ts-fox_hunt
Usage Example:
import { encryptString, decryptString } from "./cypher";
const encryptedString = encryptString("string to encrypt", number to change each char by (must be positive example: 12))
console.log(encryptedString)
console.log(decryptString("string to decrypt", same number used when encrypting))