Very simple and changeable crypto library for javascript
npm install derke
Very simple and changeable crypto library for javascript



```
npm install --save derke
`javascript
const derke = require("derke");
// Text convert to crypto code
derke.convert("hello"); // 00100000000010000000001000000000100000....
// Crypto code convert to text
derke.reverse(cryptoText); // hello
`
Old:
`js`
{
key: "a",
value: "00000000000..."
}
Custom:
`js`
{
key: "a",
value: "00000000000..."
},
{
key: "ş",
value: "00000000011..."
}
#### Attention Important !
- "key" must be unique
- "value" must be unique
- "key" must be character (so length = 1)
- All "value" lengths must be equal
#### How to test new custom config.js?
``
npm test
- convert average time : 0.160 ms
- reverse average time : 0.70 ms