Como eu revogo uma chave PGP?

7
  

Nota: esta é uma situação puramente hipotética.

Suponha que eu criei uma chave PGP, a enviei para o servidor de chaves Ubuntu ( hkp://keyserver.ubuntu.com ) e a adicionei à minha conta do Launchpad. Além disso, suponha que minha chave PGP foi comprometida de alguma forma.

Além de remover a chave do Launchpad, quais etapas eu preciso fazer?

    
por Nathan Osman 26.05.2012 / 00:55

2 respostas

11

gpg --list-keys
Encontre seu código de chave:

pub   2048R/deadb33f 2012-03-10
uid                  Something <[email protected]>


gpg --edit-key 0xdeadb33f

Command> revuid
Really revoke this user ID? (y/N) y
Please select the reason for the revocation:
  0 = No reason specified
  4 = User ID is no longer valid
  Q = Cancel
(Probably you want to select 4 here)
Your decision? 4
gpg --keyserver keyserver.ubuntu.com -send-keys 0xdeadb33f

Da lista de discussão do gnupg:

    gpg --keyserver pool.sks-keyservers.net -refresh-keys 0xdecafbad

now use gpg to revoke the UID

    gpg --edit-key 0xdecafbad

gpg displays a list of UIDs on the key. Enter the number of the UID you
wish to revoke. The list is redisplayed with an * next to the selected
one. now use the gpg command revuid to revoke:

    Command> revuid
    Really revoke this user ID? (y/N) y
    Please select the reason for the revocation:
      0 = No reason specified
      4 = User ID is no longer valid
      Q = Cancel
    (Probably you want to select 4 here)
    Your decision? 4

Answer the passphrase prompt and 'save' to update your keyring with the
modified key. Now send the key with revoked UID to the keyservers

    gpg --keyserver pool.sks-keyservers.net -send-keys 0xdecafbad
    
por RobotHumans 26.05.2012 / 01:06
0

Você está perguntando sobre o PGP, eu acho que o mesmo se aplica ao que você faria com o Gnu Privacy Guard (GPG). Durante a criação da sua chave, você daria mais um passo e criaria uma chave de revogação. Para mais detalhes e etapas, consulte a documentação oficial aqui .

    
por itnet7 26.05.2012 / 01:06

Tags