evelyn
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

Evelyn

Feminine Encryption

Usage

const keyAdv = generateKey(20); // Generates a 20 character long key

const encryptedAdv = encrypt("Hello World", keyAdv, 20, true); // Encryptes the text "Hello World" with the key keyAdv
// Also makes the key encrypted string 20 characters long, and adds a random chunk

const decryptedAdv = decrypt(encryptedAdv, keyAdv); // Decryptes the encrypted string with the key keyAdv

const key = generateKey(10); // Generates a 10 character long key

const encrypted = encrypt("Hello, World!", key); // Encryptes the text "Hello World" with the key key

const decrypted = decrypt(encrypted, key);// Decryptes the encrypted string with the key key

Installation

npm i evelyn

# or
git clone https://github.com/entrpix/evelyn
cd evelyn
npm i 
npm run build

Readme

Keywords

none

Package Sidebar

Install

npm i evelyn

Weekly Downloads

2

Version

0.1.0

License

MIT

Unpacked Size

8.95 kB

Total Files

8

Last publish

Collaborators

  • entrpix