@khraosgenetor/encryption
v1.0.1
Published
Seeded multi-pass Caesar-style cipher for strings
Readme
@khraosgenetor/encryption
Seeded multi-pass Caesar-style cipher for strings.
Install
npm install @khraosgenetor/encryption
Usage
import { encryptor, decryptor } from "@khraosgenetor/encryption"; const enc = encryptor("hello world", 3, "myseed"); const dec = decryptor(enc, 3, "myseed");
