% ./passphrase.pl 10
coppice-topped
belly-naked
bastard locust tree
diamond bort
middle-aged
self-mapped
air level
field gun
machine rifle
chock stone
% ./passphrase.pl 10
self-knowing
soul-killing
Magna charta
fly-killing
spring chicken
blotting book
finger-cone
gauge glass
Fort union
assistant examiner
% ./passphrase.pl 10
soya-bean oil
foxtail pine
island-dotted
four-way cock
side-bar rule
benzoyl hydride
straight-fibered
steel town
stone bramble
rag-boilingPassphrases You Can Memorize That Even the NSA Can’t Guess
21–30 of 57 posts
Re: Passphrases You Can Memorize That Even the NSA Can’t Guess
#22Re: Passphrases You Can Memorize That Even the NSA Can’t Guess
#23Re: Passphrases You Can Memorize That Even the NSA Can’t Guess
#24This is actually pretty cool. From the article: Not too bad for a passphrase like “bolt vat frisky fob land hazy rigid,” which is entirely possible for most people to memorize. Compare that to “d07;oj7MgLz’%v,” a random password that contains slightly less entropy than the seven-word Diceware passphrase but is significantly more difficult to memorize. At one trillion guesses per second — per Edward Snowden’s January…
Re: Passphrases You Can Memorize That Even the NSA Can’t Guess
#25FreeBSD has an odd dictionary file (/usr/share/dict/web2a) which has short phrases. I use a script to randomly pull some entries from it and then I piece memorable ones together to make my passphrase. Sprinkle in some punctuation and character replacement and it makes great passwords that are easy to remember. % ./passphrase.pl 10 coppice-topped belly-naked bastard locust tree diamond bort middle-aged self-mapped air…
Re: Passphrases You Can Memorize That Even the NSA Can’t Guess
#26Re: Passphrases You Can Memorize That Even the NSA Can’t Guess
#27BIP0039 has been around for a while and generates passphrases strong enough to be the seed of every private key you will ever deterministically generate in a wallet.
Re: Passphrases You Can Memorize That Even the NSA Can’t Guess
#28FreeBSD has an odd dictionary file (/usr/share/dict/web2a) which has short phrases. I use a script to randomly pull some entries from it and then I piece memorable ones together to make my passphrase. Sprinkle in some punctuation and character replacement and it makes great passwords that are easy to remember. % ./passphrase.pl 10 coppice-topped belly-naked bastard locust tree diamond bort middle-aged self-mapped air…
Be careful that your "memorability" pruning doesn't reduce the entropy too much.
Re: Passphrases You Can Memorize That Even the NSA Can’t Guess
#29This is actually pretty cool. From the article: Not too bad for a passphrase like “bolt vat frisky fob land hazy rigid,” which is entirely possible for most people to memorize. Compare that to “d07;oj7MgLz’%v,” a random password that contains slightly less entropy than the seven-word Diceware passphrase but is significantly more difficult to memorize. At one trillion guesses per second — per Edward Snowden’s January…
The other advantage? It's generally faster /easier for someone to type something like "bolt vat frisky fob land hazy rigid" than "d07;oj7MgLz`%v,". At least it is for me.
I think this is one of the greatest unspoken benefits of Diceware-style passphrases!
Re: Passphrases You Can Memorize That Even the NSA Can’t Guess
#30Earlier quoted context omitted.
The entropy checker doesn't know about externalities like how common a word is or how likely it is to appear following some other word or how frequently it's used in passwords specifically. It's just measuring the length of the string, and probably the class from which its characters are drawn (in your case lowercase letters and spaces). Relevant Dilbert: http://dilbert.com/strip/2001-10-25
my point was using some common word on purpose, expecting it to produce a low entropy result My thinking was that "Correct Horse Battery Staple" had more entropy than: "go go go go go go go go go go go go go" .. which, apparently, is not
If your sample space is "all words in the english language, capitalized and uncapitalized", then the second one has more entropy than the first one. But if your sample space is "all characters or runs of characters that appear in the passphrase", the second one has a whole lot less entropy.