by-10

The by-10 hash algorithm was specially designed to complicate even a single character by encrypting it with long transactions.

Firs Code

const pl = require("password-locking");

```javascript
let encrypted  = pl.encryption.by10("Hello World (merhaba dünya)");
  console.log(encrypted);
```
//result: ??XK?XKK-X?XX?-??t-X?t?X-lK--?XXKXX?XLKXXXXX?-?K--??-?X-lK--?-XKX

Since the result from the algorithm is long and complex, I recommend using it only in the important parts.

Last updated