{
"$type": "site.standard.document",
"bskyPostRef": {
"cid": "bafyreidnu7yd7grrffq3hgmlg2tnqidqfdufu47fmqlsbhraqwk3j2t4qu",
"uri": "at://did:plc:haakkg7y3xdghcdmprxeexso/app.bsky.feed.post/3mpviwdydzjy2"
},
"path": "/t/how-to-choose-a-password-computerphile/38994#post_13",
"publishedAt": "2026-07-05T10:05:39.000Z",
"site": "https://discuss.privacyguides.net",
"tags": [
"EFF’s word list"
],
"textContent": "blibly:\n\n> How many words could I safely use for a passphrase if I, say, include an obscure fictional name and slightly misspell one of the words?\n\nThat will depend on your desired password bit strength and word list length as so:\n\n\n import random\n import math\n\n word_list = ['insert', 'words', 'here']\n\n BIT_STRENGTH = 128\n word_space = len(word_list)\n combinations = 2 ** BIT_STRENGTH\n words_in_pwd = math.ceil(math.log(combinations, word_space))\n\n rng = random.SystemRandom()\n password = ' '.join(rng.choice(word_list) for _ in range(words_in_pwd))\n\n print(words_in_pwd)\n print(password)\n\n\nFor EFF’s word list that has 7776 words, you need 10 words to exceed 128 bit entropy which is suitable for practically anything.\n\nYou might be able to get away with 10-20 bits less security if you use heavy Argon2id key derivation parameters, but outside KeepassXC master password, you don’t really get to fine-tune the Argon2 parameters.\n\n* * *\n\nBut, you’ll only need to memorize 3-4 passwords:\n\n * One FDE password for your computers’ operating systems, that’s only available to the LUKS decryption instance\n * One root password for your operating system privilege escalation.\n * One master password for your password manager’s database.\n * Optionally, one password for FDE external drives.\n\n\n\nThe last one is there because you can probably restore access to your email and reset majority of online account passwords even if you’d lose access to all of your password databases. But you do not want to lose access to your files even in that event, so I’d recommend the fourth one.\n\nEverything else should be managed by the password manager passwords. The passwords should be unique, and 128-256 bits strong. You don’t really have to care about length and charspace because the manager will remember them for you. Just use whatever chars are allowed by the service and adjust length until you hit the 128-256 area. It’s only if the service complains about password being too long, that you should really fine tune the types of characters used, like enable upper case, or even customize the punctuation marks used.\n\nAlso, make sure to adhere to best practices for password manager database backups:\n\n * One backup on a second drive\n * One backup on a permanently airgapped backup drive\n * One backup outside your home, maybe at work or friend or relative’s house.\n\n",
"title": "How to Choose a Password - Computerphile"
}