Anyone know if GPG is included in the Live CD of the Ubuntu OS?
All popular Linux distributions include GPG by default, specifically Ubuntu (also I have used 14, 16 and 20 and they all had it).
From what I can tell all you do is type "gpg -c SEED.txt" and enter a strong password. To decrypt just type "gpg SEED.txt.gpg" and should ask for password before it decrypt. Wondering if anyone had any issues using gpg in the past to encrypt their documents and seeds. Are failure points I can run into? Is there an encryption option I can select such as 128bit vs. 256bit? or is it just some standard ?
You can use the -symmetric command and defined an algorithm to be used in the encryption
gpg --symmetric --cipher-algo AES256 SEED.txt
You will be asked to enter your passphrase and confirm it again.
The algorithms you can use are: 3DES, CAST5, BLOWFISH, AES, AES192, AES256, TWOFISH, CAMELLIA128, CAMELLIA192, CAMELLIA256
For more info:
https://tutonics.com/2012/11/gpg-encryption-guide-part-4-symmetric.html