O layout da listagem --edit-key
não está documentado (não que eu possa encontrar de qualquer maneira). As abreviaturas que você menciona, no entanto, estão em algum lugar nas páginas de informações ( info gpg
).
Eu pesquisei S:
e descobri que realmente queria pesquisar usage:
.
Em "Opções relacionadas à chave GPG":
4.2.1 How to change the configuration
These options are used to change the configuration and are usually
found in the option file.
'--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, fazer gpg -k --list-options show-usage 1A3ABKEY
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 algumas informações são encontradas em "Uso não assistido de GPG"
Key-Usage: 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 lá, em algum lugar, no seu sistema. Se man
não ajudar, tente man -k
e / ou info
.