SSH and GPG Keys
> Need to send me an encrypted file?
My SSH and GPG public keys are hosted on Github.
Encrypt using GPG
curl -s https://github.com/joshgummersall.gpg | gpg --import
gpg --armor --encrypt \
--recipient "[email protected]" \
--output file.txt.asc < file.txt
Then, attach file.txt.asc
to an email or text message.
Encrypt using Age
age --armor --encrypt \
--recipient "$(curl -s https://github.com/joshgummersall.keys | head -1)" \
--output file.txt.age file.txt
Then, attach file.txt.age
to an email or text message.
Standard Labs LLC