Node Js encryption module for triple des
npm install node_triple_des

!Node.js CI
!Node.js CI
!Node.js CI
Node - Triple Des Node Js encryption module for triple des
Table of contents:
* Quickstart
* Before you begin
* Installing the client library
* Versioning
* Contributing
* License
Dependency
----------
- crypto-js.
Install
-------
Inside your project folder run
```
$ npm install node_triple_des
Usage
-------
`javascript
const Encryption = require('node_triple_des');
const encrypt = Encryption.encrypt('SharedKey', 'Plain Test');
console.log(encrypt);
// U2FsdGVkX1+luaxAzoyoyJI/5sAzyUW1
const decrypt = Encryption.decrypt('SharedKey', 'CipherText');
console.log(decrypt);
// U2FsdGVkX1+luaxAzoyoyJI/5sAzyUW1
// Message
``
This library follows Semantic Versioning.
This library is considered to be General Availability (GA). This means it
is stable; the code surface will not change in backwards-incompatible ways
unless absolutely necessary (e.g. because of critical security issues) or with
an extensive deprecation period. Issues and requests against GA libraries
are addressed with the highest priority.
Contributions welcome! See the Contributing Guide.
Apache Version 2.0
See LICENSE