Password composition algorithm - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T06:39:16Z http://stackoverflow.com/feeds/question/137392 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/137392/password-composition-algorithm 0 Password composition algorithm Peter Hoffmann 2008-09-26T02:22:30Z 2008-09-26T03:59:29Z <p>I'm sick of remembering all the passwords for different logins. Lately I found the interesting tool <a href="http://www.xs4all.nl/~jlpoutre/BoT/Javascript/PasswordComposer/" rel="nofollow">password composer</a> which lets you generate passwords base on the <strong>hostname</strong> and a secret <strong>master password</strong>. But I don't want to use a website or installing software to generate my passwords.</p> <p>So I'm looking for a simple one way hashing alogorithm which I can execute without computer aid to generate my passwords. Something in the spirit of the <a href="http://en.wikipedia.org/wiki/Solitaire_(cipher)" rel="nofollow">solitare cipher</a> without the need for cards.</p> <p>Using a PW store is not an option.</p> http://stackoverflow.com/questions/137392/password-composition-algorithm/137421#137421 1 Answer by Vinko Vrsalovic for Password composition algorithm Vinko Vrsalovic 2008-09-26T02:33:25Z 2008-09-26T03:08:10Z <p>Why don't you just use the exact same algorithm as the password composer?</p> <ul> <li>Pick a master password</li> <li>Take the application/machine name for which you want a password</li> <li>Concatenate the two (or shuffle)</li> <li>Apply a code you can do in your head, like <a href="http://en.wikipedia.org/wiki/Caesar%27s_cipher" rel="nofollow">Caesar's cipher</a></li> <li>Take the first X characters (15 is usually a good length for secure passwords)</li> </ul> <p>Example:</p> <pre><code>Master Password: kaboom Machine Name: hal9000 Shuffle: khaablo9o0m00 Transposition table: shift 5 left abcdefghijklmnopqrstuvwxyz 1234567890 vwxyzabcdefghijklmnopqrstu 6789012345 Result: fcvvwgj4j5h55 </code></pre> <p>You could use as complex a substitution as your head can do reliably (with or without a paper). You could also use a different table for each password (say, deduce the table from the first letter of each machine name). As long as your master password is secure, there's nothing to fear about the simplicity of the algorithm.</p> http://stackoverflow.com/questions/137392/password-composition-algorithm/137432#137432 0 Answer by Dave Sherohman for Password composition algorithm Dave Sherohman 2008-09-26T02:36:05Z 2008-09-26T02:36:05Z <p>Something I used to do (before I started using <em>pwgen</em> to generate my passwords) was to find a nearby paper document and use the first and last character of each line. So long as you know which document goes with which account, regenerating the password is easy if you lose/forget it and no computer is required to do so. (It is important to use a book or other paper document for this, of course, as anything electronic could change and then you'd be lost.)</p> http://stackoverflow.com/questions/137392/password-composition-algorithm/137457#137457 0 Answer by Mike F for Password composition algorithm Mike F 2008-09-26T02:45:39Z 2008-09-26T03:59:29Z <p>First pick a person (celebrity, relative, fictional character or whatever). This person's identity is your private key, which you should keep secret.</p> <p>To generate a password for a site, juxtapose the person with the sitename and think about the two for a while. Whatever mental image you get, sum it up with a memorable phrase and take a moment to fix the image and the phrase in your mind. The phrase is your password for this site.</p> <p>(edit) The rationale for this method is that any maths-based system would be either insecure, or too complicated to do in your head.</p> http://stackoverflow.com/questions/137392/password-composition-algorithm/137658#137658 0 Answer by Mnebuerquo for Password composition algorithm Mnebuerquo 2008-09-26T03:47:10Z 2008-09-26T03:47:10Z <p>Alternate characters of the hostname with characters from your master password until you run out of master password characters.</p> <p>hostname: stackoverflow.com master password: homer</p> <p>new password: shtoamcekro</p> <p>I can almost do that in my head. No need for paper or pencil.</p> <p>Don't use this system for anything super important. But for your half dozen email, facebook and other random accounts it should be fine.</p>