Como mostrar informações sobre revogação na listagem principal

1

Eu preciso da listagem de chave privada para mostrar o status de revogação Eu tentei esses dois comandos

  1. gpg -K
  2. gpg --com-cor-de-rosa -K

Mas nenhuma listagem diz quais chaves foram revogadas

Existe um comando de lista que mostra a revogação?

    
por Vivarto 12.08.2018 / 08:02

1 resposta

0

Existe um comando que mostra a revogação?

Use o seguinte:

gpg --list-key ...

Now, to actually check the key, use gpg --list-key. This is what a non-revoked key will look like:

0 nat@pigtown:~$ gpg --list-key  $(gpg --with-colons --fingerprint "ssh://zimmermann.mayfirst.org" |grep fpr |cut -f10 -d ":")
pub   2048R/860E8F9C 2008-10-29 [expires: 2014-09-25]
uid                  ssh://zimmermann.mayfirst.org
uid                  ssh://zimmerman.mayfirst.org

0 nat@pigtown:~$

And this is what a revoked key will look like:

0 nat@pigtown:~$ gpg --list-key $(gpg --with-colons --fingerprint "ssh://sontag.mayfirst.org" |grep fpr |cut -f10 -d ":")
pub   2048R/AE2C8DE3 2010-09-10 [revoked: 2011-10-30]
uid                  ssh://sontag.mayfirst.org

0 nat@pigtown:~$

Observe the "revoked" in the pub line there, compared to the expiration date in the example above. You can probably guess what that changes to when a key expires.

Fonte Como verificar as revogações de chave e assinatura do OpenPGP

    
por 12.08.2018 / 08:43

Tags