UNPKG

encryption-tool-ts-fox_hunt

Version:

Ascii encryption tool for strings

21 lines (14 loc) 545 B
# String Encryption ### Encryption of strings using varying ascii values ### Installation Install the dependencies and devDependencies and start the server. ```sh npm i encryption-tool-ts-fox_hunt ``` ### Usage Example: ```sh 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)) ```