Sono totalmente nuovo con PGP e mi piacerebbe sapere come posso avviare uno scambio di mail con esso.
Ho creato le mie chiavi pubbliche / private e ho postato la mia chiave privata sul MIT PGP Public Key Server . Posso trovarlo sul sito ora.
Quali sono le prospettive? Come posso creare il messaggio crittografato? (senza bisogno di alcun software. Voglio solo capire)
Ci sto pensando:
# I write my message
$ vim message
$ cat message
Hello, can you read this?
# Add the fingerprint of my public key so the recipient will be able to find the public key on pgp.mit.edu.
$ gpg --fingerprint my-mail-address >> message
# Create the message (I imported the recipient's public key)
$ cat message | gpg --encrypt --armor -r [email protected]
-----BEGIN PGP MESSAGE-----
Version: GnuPG v1
[Base64]
-----END PGP MESSAGE-----
È giusto?