1.0.1 • Published 11 months ago

gura-encryptor v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

Gura-Encryptor

Info

Gura Encryptor is a simple node package for encryption. It works by converting a string into an array, then looping through every element within that array into it's designated "encrypted" format. This was designed as a somewhat type of joke, and should not be actually used in a production based environment.

Installation

Via npm:

$ npm i gura-encryptor

Via cdn:

<script type="module" src="https://unpkg.com/gura-encryptor@1.0.0/index.js"></script>

Examples

cjs:

const guraEncryptor = require("gura-encryptor");

var value = "hello";
var secretValue = guraEncryptor.encrypt(value);
console.log(secretValue);

esm:

import { encrypt, decrypt } from "gura-encryptor";

var value = "hello";
var secretValue = encrypt(value);
console.log(secretValue);

License

MIT

1.0.1

11 months ago

1.0.0

11 months ago