An open API service indexing awesome lists of open source software.

https://github.com/eldoy/wcrypt


https://github.com/eldoy/wcrypt

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

# Wcrypt

Encrypt and decrypt strings with Node.js

### Install
`npm i wcrypt`

### Usage
```javascript
/* Default options shown */
const wcrypt = require('wcrypt')({
algorithm: 'aes-192-cbc',
password: 'password',
salt: 'salt',
length: 24
})

/* Encrypt a string */
const encrypted = await wcrypt.encrypt('clear text string')
// e1ec7507554a2ce8c5d13b01f803c64f3b95c08d8a9b61e964f78d7656bbecb9

/* Decrypt a string */
const decrypted = await wcrypt.decrypt(encrypted)
// clear text string
```
MIT licensed. Enjoy!