1.0.6 • Published 5 years ago

@anishg/string_encryptr v1.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
5 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

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.0

5 years ago