1.0.6 • Published 3 years ago

@anishg/string_encryptr v1.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

What is This?

String encrypr and decryptr

For Installation

npm i @anishg/string_encryptr

first import like this

const encryptr = require('@anishg/string_encryptr')

let password = "pass"  // password

const Helper = new encryptr(password) 

For Encryption

Helper.encrypt('test')
    .then(data =>console.log(data))
    .catch(err => console.log(err))

For Decryption

Helper.decrypt('CvrCscRdqDrrCs')
    .then(data =>console.log(data))
    .catch(err => console.log(err))

    
1.0.6

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.0

3 years ago