1.1.7 • Published 5 years ago

lsj v1.1.7

Weekly downloads
83
License
UCOP
Repository
-
Last release
5 years ago

License: UCOP v3

Current features:

  • encrypting strings
  • decrypting strings
  • generating a md5 hash

Setup for the project

Download the module with the command: npm install --save lsj

Import the module with:

const lsj = require('lsj');

encryption method usage

var text = "The text you want to use";
var key = "Enter a random generated key with a length of 16 characters";

var encText = lsj.encrypt(text, key);

decryption method usage

var encText = "The text you want to encrypt";
var key = "The key used to encrypt the string";

var text = lsj.decrypt(encText, key);

MD5-hash generator usage

var text = "The text you want to use";

var md5 = lsj.md5(text);

SHA256-hash generator usage

var text = "The text you want to use";

var hash = lsj.createSHA256(text);
1.1.7

5 years ago

1.1.6

6 years ago

1.1.5

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.22

6 years ago

1.0.21

6 years ago

1.0.20

6 years ago

1.0.19

6 years ago

1.0.18

6 years ago

1.0.17

6 years ago

1.0.16

6 years ago

1.0.15

6 years ago

1.0.14

6 years ago

1.0.13

6 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago