>We suggest that you include five words of 5-10 letters in size, chosen at random, with spaces, special characters, and/or numbers embedded into words. >You need to be able to recall the passphrase that was used to encrypt the file. Why bother writing security guidelines which are impossible for a human to follow? edit: Try recalling any passphrases generated by the command below, and that's before the random sprinkl…
Is it really impossible for a human to follow? "Shiny C0rrect H0rse Battery Staple!"
Using GPG to Encrypt Your Data
11–20 of 100 posts
Re: Using GPG to Encrypt Your Data
#12Re: Using GPG to Encrypt Your Data
#13Earlier quoted context omitted.
Is it really impossible for a human to follow? "Shiny C0rrect H0rse Battery Staple!"
At work I constantly deal with people who can't remember passwords as short as 8 characters, you have to remember we're not representative of the average person.
Re: Using GPG to Encrypt Your Data
#14>We suggest that you include five words of 5-10 letters in size, chosen at random, with spaces, special characters, and/or numbers embedded into words. >You need to be able to recall the passphrase that was used to encrypt the file. Why bother writing security guidelines which are impossible for a human to follow? edit: Try recalling any passphrases generated by the command below, and that's before the random sprinkl…
Is it really impossible for a human to follow? "Shiny C0rrect H0rse Battery Staple!"
In my experience, overly restrictive password policies force users to choose passwords that are less secure and easier to remember.
Re: Using GPG to Encrypt Your Data
#15For GPG symmetric encryption, the kind the article describes, here are the best options I've found for my typical case: gpg --symmetric \ --cipher-algo aes256 \ --digest-algo sha256 \ --cert-digest-algo sha256 \ --compress-algo none -z 0 \ --quiet --no-greeting \ --no-use-agent "$@" I keep this command here: https://github.com/SixArm/gpg-encrypt The options are chosen to balance tradeoffs of convenience, strength, an…
It's a wrapper for gpg to edit encrypted files.
Re: Using GPG to Encrypt Your Data
#16Earlier quoted context omitted.
Is it really impossible for a human to follow? "Shiny C0rrect H0rse Battery Staple!"
That's a good long term solution but when policies force you to change your password every 45 days, it falls apart. In my experience, overly restrictive password policies force users to choose passwords that are less secure and easier to remember.
Re: Using GPG to Encrypt Your Data
#17Why would they not use asymmetric encryption?
Asymmetric encryption solves the problem of transmitting the password safely ("solve" is a rather optimistic word, maybe "delegates" is more appropriate); if you can safely transfer passwords from point to point, then using symmetric encryption is far easier.
Re: Using GPG to Encrypt Your Data
#18Earlier quoted context omitted.
Is it really impossible for a human to follow? "Shiny C0rrect H0rse Battery Staple!"
That's a good long term solution but when policies force you to change your password every 45 days, it falls apart. In my experience, overly restrictive password policies force users to choose passwords that are less secure and easier to remember.
Re: Using GPG to Encrypt Your Data
#19>We suggest that you include five words of 5-10 letters in size, chosen at random, with spaces, special characters, and/or numbers embedded into words. >You need to be able to recall the passphrase that was used to encrypt the file. Why bother writing security guidelines which are impossible for a human to follow? edit: Try recalling any passphrases generated by the command below, and that's before the random sprinkl…
Is it really impossible for a human to follow? "Shiny C0rrect H0rse Battery Staple!"
Re: Using GPG to Encrypt Your Data
#20For GPG symmetric encryption, the kind the article describes, here are the best options I've found for my typical case: gpg --symmetric \ --cipher-algo aes256 \ --digest-algo sha256 \ --cert-digest-algo sha256 \ --compress-algo none -z 0 \ --quiet --no-greeting \ --no-use-agent "$@" I keep this command here: https://github.com/SixArm/gpg-encrypt The options are chosen to balance tradeoffs of convenience, strength, an…
(I'm asking seriously; I don't have a strong opinion about GPG command line arguments)