GPG는 자체 서명되지 않은 모든 항목을 제거합니다.

GPG는 자체 서명되지 않은 모든 항목을 제거합니다.

자체 서명되지 않은 모든 키를 포함하여 키 서버에서 gpg 키를 가져오거나 새로 고치고 싶습니다. 예를 들어 내가 이 gpg를 시도할 때마다 다음과 같이 말합니다.

gpg: key <number>: number of dropped non-self-signatures: 24
[...]
gpg: Total number processed: 1
gpg:              unchanged: 1

문서에 따르면 이는 가짜 서명으로 가득 찬 키를 가져오는 것을 방지하기 위한 이상적인 동작인 것 같지만 gpg에서 원하는 작업을 수행할 수는 없습니다.

키 가져오기/새로고침을 시도했습니다.

gpg --verbose --import-options no-self-sigs-only --keyserver keyserver.ubuntu.com --recv-keys <fingerprint>

그러나 출력은 동일합니다.

답변1

해결되었습니다. 올바른 플래그는 입니다 --keyserver-options no-self-sigs-only.

gpg --verbose --keyserver-options no-self-sigs-only --keyserver keyserver.ubuntu.com --refresh-keys

관련 정보