O layout da --edit-key
listagem não está documentado (não que eu pudesse encontrar de qualquer maneira). As abreviações mencionadas no entanto estão em algum lugar nas páginas de informações ( info gpg
).
Procurei S:
e achei que eu realmente queria procurar usage:
.
Em "Opções relacionadas à chave GPG":
4.2.1 Como alterar a configuração
Essas opções são usadas para alterar a configuração e geralmente são encontradas no arquivo de opções.
'--list-options parameters'
show-usage
Show usage information for keys and subkeys in the standard
key listing. This is a list of letters indicating the allowed
usage for a key ('E'=encryption, 'S'=signing,
'C'=certification, 'A'=authentication). Defaults to no.
Então, fazendo gpg -k --list-options show-usage 1A3ABKEY
irá mostrar algo assim:
pub rsa4096/1A3ABKEY 2015-01-25 [SC]
uid [ultimate] Some Key
sub rsa4096/4B907KEY 2015-09-19 [S]
sub rsa4096/F9A41KET 2015-09-19 [E]
Mais informações são encontradas em "Uso não assistido de GPG"
Uso-chave: USAGE-LIST
Space or comma delimited list of key usages. Allowed values are
'encrypt', 'sign', and 'auth'. This is used to generate the key
flags. Please make sure that the algorithm is capable of this
usage. Note that OpenPGP requires that all primary keys are
capable of certification, so no matter what usage is given here,
the 'cert' flag will be on. If no 'Key-Usage' is specified and the
'Key-Type' is not 'default', all allowed usages for that particular
algorithm are used; if it is not given but 'default' is used the
usage will be 'sign'.
Portanto, embora não seja imediatamente aparente, as informações estão em algum lugar do seu sistema. Se man
não ajudar, tente man -k
e / ou info
.