0.0.4 • Published 1 year ago
@oman21/cryptograph-js v0.0.4
Installation
npm i @oman21/cryptograph-js
Usage
import { Cipher } from '@oman21/cryptograph-js';
const key = 12345;
const text = "Hello World! 4234309?_.";
const encrypted = Cipher(key, text);
console.log("encrypted", encrypted) // result: Igopt Yrvqe! 8746644?_.
const decrypted = Cipher(key, encrypted, true);
console.log("decrypted", decrypted); // result: Hello World! 4234309?_.
Props
Prop | Type | Default | Description |
---|---|---|---|
key | number | key for encrypt/decrypt | |
text | string | "" | text for encrypt/decrypt |
decrypt | boolean | false | true for decode |
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.