Estimate password strength (local, nothing stored).
Password entropy estimates how hard a password is to guess, in bits, from its length and the size of the character set. The tool computes it and rates the strength.
Formula
H = L · log2(R) (L = length, R = size of the character pool)
Example
12 chars from lower+upper+digits (R = 62) → 12·log2(62) ≈ 71 bits.
Notes
// RELATED TOOLS