How Password Strength is Calculated
Password strength is measured by entropy - the amount of uncertainty an attacker faces. Higher entropy means more possible combinations and longer cracking time.
Entropy Formula
Entropy = log₂(character_set_size^password_length)
For example, an 8-character password with lowercase only has 37 bits of entropy, while a 12-character password with all character types has 78 bits.