A (naive) password entropy calculator. It is not intended or designed to be a measure of password strength, please refrain from using it as such.
cargo install paspio
git clone https://aur.archlinux.org/paspio-git.git
cd paspio-git
makepkg -si
```bash git clone https://github.com/grtcdr/paspio cd paspio cargo build
```
paspio "liuLe9ohjub8hu2ie"
It uses the same formula as omnicalculator.
bash
Entropy = L * log2(R)
Where:
- L
is the length of the password.
- R
is the size of the pool of characters the password exists in.
| Pool | Elements | Pool size |
| -----: | :------ | :-------: |
| Lowercase latin letters | [a-z] | 26 |
| Uppercase latin letters | [A-Z] | 26 |
| Digits | [0-9] | 10 |
| Symbols | `~!@#$%^&*()-=_+[{]}\|;':",.<>/? | 32 |