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