Linuxのgpgで作成した秘密鍵をCygwinのgpgでimportして
秘密鍵の信用情報を変更した。
インポート元
gpg -a --export example@example.com > public.txt
gpg -a --export-secret-keys example@example.com > secret.txt
インポート先
gpg --import public.txt secret.txt
gpg --edit example@example.com
Command> trust
5 = I trust ultimately
Your decision? 5
--allow-secret-key-import オプションは不要だった。
参考資料
ただのにっき
http://sho.tdiary.net/20050723.html
GnuPG に既存の鍵ペアをインポートする
http://www.nanashinonozomi.com/gpglog/2006/02/11/import-secret-key.php