--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の無人使用」を参照してください
キー使用法: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
。