Макет --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"
Використання ключа: СПИСОК ВИКОРИСТАННЯ
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
.