Il layout della --edit-key
lista non è documentato (non che potrei trovare comunque). Le abbreviazioni che menzioni comunque sono, da qualche parte nelle pagine di informazioni ( info gpg
).
Ho cercato S:
e scoperto che in realtà volevo cercare usage:
.
In "Opzioni relative alla chiave GPG":
4.2.1 Come modificare la configurazione
Queste opzioni vengono utilizzate per modificare la configurazione e di solito si trovano nel file delle opzioni.
'--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.
Quindi, fare gpg -k --list-options show-usage 1A3ABKEY
ti mostrerà qualcosa del genere:
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]
Altre informazioni sono disponibili in "Uso incustodito di GPG"
Utilizzo chiave: ELENCO DEGLI USI
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'.
Quindi, anche se non immediatamente evidenti, le informazioni sono lì, da qualche parte, sul tuo sistema. Se man
non ti aiuta, prova man -k
e / o info
.