This is a very simple web app, designed for everyday use. The goal is to generate a strong password to access a web site by filling in a form with simple yet unique information. All inputs are optional and the password is generated on the fly, which lets the user choose the level of details to get more or less security. The same password is generated consistently for the same inputs.
Different versions of the SHA algorithm are applied to the string resulting from the concatenation to generate passwords of different lengths:
* MD5 generates passwords of 32 characters (size M)
* SHA-1 generates passwords of 40 characters (size L)
* SHA-256 generates passwords of 56 characters (size XL)
* SHA-512 generates passwords of 128 characters (size XXL)
These details are provided for information only. No information here is legal advice and should not be used as such.
There are no reported vulnerabilities