https://github.com/9trocode/node_triple_des
https://github.com/9trocode/node_triple_des
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/9trocode/node_triple_des
- Owner: 9trocode
- License: apache-2.0
- Created: 2020-03-02T09:26:02.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T19:47:10.000Z (about 3 years ago)
- Last Synced: 2025-10-13T09:17:54.721Z (6 months ago)
- Language: JavaScript
- Size: 14.1 MB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Node - Triple Des
[](https://nodei.co/npm/node_triple_des/)
[](https://repl.it/github/9trocode/node_triple_des)



[Node - Triple Des](https://www.npmjs.com/package/node_triple_des) Node Js encryption module for triple des
**Table of contents:**
* [Quickstart](#quickstart)
* [Before you begin](#before-you-begin)
* [Installing the client library](#installing-the-client-library)
* [Versioning](#versioning)
* [Contributing](#contributing)
* [License](#license)
## Quickstart
[DES](https://en.wikipedia.org/wiki/Data_Encryption_Standard) message digest cryptographic
hash function algorithm from [CryptoJS](https://#),
packaged for Nodejs.
Dependency
----------
- [`crypto-js`](https://www.npmjs.com/package/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
```
## Versioning
This library follows [Semantic Versioning](http://semver.org/).
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.
## Contributing
Contributions welcome! See the [Contributing Guide](https://github.com/9trocode/node_triple_des/blob/master/CONTRIBUTING.md).
## License
Apache Version 2.0
See [LICENSE](https://github.com/9trocode/node_triple_des/blob/master/LICENSE)