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

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

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"

```