Soy totalmente nuevo con PGP, y me gustaría saber cómo puedo iniciar un intercambio de correo con él.
Creé mis claves públicas / privadas y publiqué mi clave privada en el MIT PGP Public Key Server . Puedo encontrarlo en el sitio ahora.
¿Qué sigue? ¿Cómo creo el mensaje cifrado? (sin la necesidad de ningún software. Solo quiero entender)
Estoy pensando en:
# 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-----
¿Esto es correcto?