--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
.