This app will deterministically generate passwords using a string as a seed. Suggested usage is to find a random excerpt from a random book that you can remember. Then you will be able to reconstruct your passwords in the future in case you forget them. Since each password has a random word from a list of 2^16 words and a random punctuation mark, numeral, and upper case letter, each password is about 29 bits of entropy. Notice that the passwords have uppercase, lowercase, digits and punctuation marks in them using the entire ASCII space. This will slow a potential brute force attack.

The hexadecimals in the output are the intermediate seed to generate the password. The password itself is the english word followed by the "cherry" of 3 characters.

But the hexadecimal number contains the same information.

The calculation is done locally, but you should take care to vet that statement and be warned not to trust random apps with your passwords.

hash output