encryption-tool-ts-fox_hunt
Version:
Ascii encryption tool for strings
21 lines (14 loc) • 545 B
Markdown
Install the dependencies and devDependencies and start the server.
```sh
npm i encryption-tool-ts-fox_hunt
```
```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))
```