Repeat the same steps as above with the same values.
Passme is a stateless password manager. It doesn't store anything, it purely relies on hashing to generate unique passwords from basic information and a secret.
The generated password will be specific to the used site and name and protected by the secret.
Note that the site and the name don't exactly need to match the domain name and the user name of the site that the password will be used for, but it's easier to remember them this way.
It can be a good practice to append a version number to the site or name value in order to be prepared for a password refresh for the specific site.
In order to regain a previously generated password, repeat the same steps with exactly the same site, name and secret.
The secret is like a master key for the passwords generated by passme. It is the only thing that should be hard to guess and we need to remember. It is OK to use the same secret for multiple passwords, but it should not be used for anything else.
Passme is distributed as:
The script and the codebase for building the binary, that also can render this web site, can be found currently in its repository:
https://github.com/aryszka/passme
Passme is open source software, contributions and forks are welcome.