1.0.4 • Published 1 year ago

encryption-tool-ts-fox_hunt v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

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))