https://github.com/angeal185/node-xor
nodejs module for encryption with the xor cipher
https://github.com/angeal185/node-xor
Last synced: 8 months ago
JSON representation
nodejs module for encryption with the xor cipher
- Host: GitHub
- URL: https://github.com/angeal185/node-xor
- Owner: angeal185
- License: mit
- Created: 2018-11-04T06:52:12.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-04T07:50:09.000Z (almost 7 years ago)
- Last Synced: 2025-01-06T17:17:05.252Z (9 months ago)
- Language: JavaScript
- Homepage: https://codepen.io/angeal185/pen/QJWPyr
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-xor
nodejs module for encryption with the xor cipher```js
const XOR = require('xor');//encrypt
XOR('secret_key',1)
// output = "rdbsdu^jdx"//decrypt
XOR('rdbsdu^jdx',1)
// output = "secret_key"```