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.

IdentityPaolo Anzani <paoloanzn@gmail.com>
Fingerprint0551 8883 A068 010A 58E9 5413 14B7 786A 2415 E2A0
Key ID14B7786A2415E2A0
TypeRSA 4096
Created2026-07-22
Expires2036-07-19
Download/paoloanzn.gpg

Encrypt a message for me

  1. Import the public key:
    curl -sSL https://paoloanzn.com/paoloanzn.gpg | gpg --import
  2. Check that its fingerprint matches the one above:
    gpg --fingerprint 14B7786A2415E2A0
  3. Encrypt a file for me:
    gpg --armor --encrypt \
        --recipient paoloanzn@gmail.com \
        --output message.txt.asc message.txt
  4. Send message.txt.asc to 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