Compile-time embedded common password list for rejection checking.
Embeds ~10,000 common passwords from priv/data/common_passwords.txt
into a MapSet at compile time. The file is registered as an
@external_resource so the module recompiles when the list changes.
Usage
Sigra.PasswordPolicy.CommonPasswords.common?("password")
#=> true
Sigra.PasswordPolicy.CommonPasswords.common?("xK9#mP2$vL5")
#=> falseLookups are case-insensitive.
Summary
Functions
Returns true if the given password is in the common passwords list.