1.1.7 • Published 6 years ago

lsj v1.1.7

Weekly downloads
83
License
UCOP
Repository
-
Last release
6 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

6 years ago

1.1.6

7 years ago

1.1.5

7 years ago

1.1.4

7 years ago

1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.22

7 years ago

1.0.21

7 years ago

1.0.20

7 years ago

1.0.19

7 years ago

1.0.18

7 years ago

1.0.17

7 years ago

1.0.16

7 years ago

1.0.15

7 years ago

1.0.14

7 years ago

1.0.13

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago