GPG key
Use this to send me encrypted mail, or to verify something I've signed. Same key as the one published at github.com/paoloanzn.gpg.
| Identity | Paolo Anzani <paoloanzn@gmail.com> |
|---|---|
| Fingerprint | 0551 8883 A068 010A 58E9 5413 14B7 786A 2415 E2A0 |
| Key ID | 14B7786A2415E2A0 |
| Type | RSA 4096 |
| Created | 2026-07-22 |
| Expires | 2036-07-19 |
| Download | /paoloanzn.gpg |
Encrypt a message for me
-
Import the public key:
curl -sSL https://paoloanzn.com/paoloanzn.gpg | gpg --import -
Check that its fingerprint matches the one above:
gpg --fingerprint 14B7786A2415E2A0 -
Encrypt a file for me:
gpg --armor --encrypt \ --recipient paoloanzn@gmail.com \ --output message.txt.asc message.txt -
Send
message.txt.ascto paoloanzn@gmail.com. I'll be the only one who can decrypt it.
Verify something I signed
Download the signed file and its detached signature, then run:
gpg --verify message.txt.sig message.txt
Look for Good signature from "Paolo Anzani <paoloanzn@gmail.com>",
and confirm that the signing key's fingerprint matches the one shown above:
gpg --fingerprint 14B7786A2415E2A0