Compare commits

..

No commits in common. "6bd6f66314cedc95ae5bef81cdc1596be1f2027d" and "511131fff74e037e0337402fe2e455a9fb62ec08" have entirely different histories.

1 changed files with 13 additions and 2 deletions

View File

@ -105,6 +105,19 @@ What are some useful ways we can use OpenPGP:
--- ---
## What's Happening Behind the Scenes
* GPG generates a symmetric key (AES) and uses that to encrypt the bulk of the data
* RSA/ECC is used only to encrypt the symmetric key
* The encrypted data packet contains metadata about which public keys were encrypted to
* This can be hidden using `--hidden-recipient/-R`
* Inspect packets using `gpg --list-packets <file.asc/file.gpg>`
---
## Verifying Signatures 📝 ## Verifying Signatures 📝
* Go to: https://www.qubes-os.org/downloads/ * Go to: https://www.qubes-os.org/downloads/
@ -217,8 +230,6 @@ What are some useful ways we can use OpenPGP:
## Further Studies ## Further Studies
* [keyoxide](https://keyoxide.org/): decentralized tool to create and verify decentralized online identities
* [pass](https://www.passwordstore.org/): Unix based `gpg` password manager * [pass](https://www.passwordstore.org/): Unix based `gpg` password manager
* [OpenPGP for application developers](https://openpgp.dev/book/): Deep dive on OpenPGP * [OpenPGP for application developers](https://openpgp.dev/book/): Deep dive on OpenPGP