Password Scheme
Care to know a password generating scheme that works?
The password checker at https://howsecureismypassword.net/ say that my passwords are pretty good.
<quote>
It would take a desktop PC about
501 nonillion years
to crack your password
</quote>
I use a md5 hasher to create a password; I need only remember the method used to create the root word used for all sites. The md5-er will make it different and significantly more complex.
example:
my root word for the password for 'The Register' is two parts. A ' short secret pattern' used at all sites and several characters from site name; ie. 'The Register' = happyregister. The md5 hash is 589c4d4e1f9bf29a16fd66fb385ea351 and The Register likes long passwords :)
For the few sites that don't like long passwords or requires special chars, I reduce the password length until the site is happy and add the special characters as needed. For some sites, I do have to keep up with the length and special chars, but very few; and I have a simple 'tag' based on a common pattern for all such needs. example 589c4d4e1f9bf29a16fd66fb385ea351 plus the tag 'N!'
So I copy & paste the md5 hash and type the tag...
Every site has a different password because I am using the site name as part of the root password.
I never write down a password. I use the md5 hash maker to generate it as needed.
I am never 'without' my password because I know the pattern for the root word and this site will gladly give me the md5 hash. http://www.miraclesalad.com/webtools/md5.php
If you can spot a flaw with my method, please point it out to me.