Расположение --edit-key
листинга не задокументировано (не то чтобы я все равно смог найти). Тем не менее, сокращения, которые вы упоминаете, находятся где-то на информационных страницах ( info gpg
).
Я искал S:
и обнаружил, что я действительно хотел искать usage:
.
В «Опции, связанные с ключом GPG»:
4.2.1 Как изменить конфигурацию
Эти параметры используются для изменения конфигурации и обычно находятся в файле параметров.
'--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.
Итак, выполнение gpg -k --list-options show-usage 1A3ABKEY
покажет вам что-то вроде этого:
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]
Некоторая дополнительная информация найдена в "Необслуживаемом использовании 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'.
Так что, хотя это и не сразу видно, информация есть где-то в вашей системе. Если man
не поможет, попробуйте man -k
и / или info
.