> For the complete documentation index, see [llms.txt](https://codeline.gitbook.io/password-locking/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://codeline.gitbook.io/password-locking/by-10.md).

# by-10

The <mark style="color:blue;">by-10 hash</mark> algorithm was specially designed to complicate even a single character by encrypting it with long transactions.

## Firs Code

````javascript
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
````

{% hint style="info" %}
Since the result from the algorithm is long and complex, I recommend using it only in the important parts.
{% endhint %}
