Using GPG to Encrypt Your Data
nas.nasa.gov
Using GPG to Encrypt Your Data
1–10 of 100 posts
Re: Using GPG to Encrypt Your Data
#2>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 sprinkling of punctuation.
grep -E "^[a-z]{5,10}$" /usr/share/dict/words | shuf -n5 | tr '\n' ' 'Re: Using GPG to Encrypt Your Data
#3Re: Using GPG to Encrypt Your Data
#4Why would they not use asymmetric encryption?
Re: Using GPG to Encrypt Your Data
#5>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…
"Shiny C0rrect H0rse Battery Staple!"
Re: Using GPG to Encrypt Your Data
#6Why would they not use asymmetric encryption?
But for bulk data encrypting good symmetric (AES, CAST5, etc.) is both more secure and significantly faster.
Re: Using GPG to Encrypt Your Data
#7Re: Using GPG to Encrypt Your Data
#8 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, and portability.Re: Using GPG to Encrypt Your Data
#9Earlier quoted context omitted.
...and why encrypt stuff transferred with scp?
because encryption in transit != encryption at rest. Maybe you don't trust the server you are scp'ing the data to, with encryption at rest you dont' need to.
====
Use GPG with the cipher AES256, without the --armour option, and with compression to encrypt your files during inter-host transfers. GPG
Encryption helps protect your files during inter-host file transfers (for example, when using the scp, bbftp, or ftp commands). We recommend GPG (Gnu Privacy Guard), an Open Source OpenPGP-compatible encryption system.
===
scp shouldn't be in that list.
Re: Using GPG to Encrypt Your Data
#10Why would they not use asymmetric encryption?