
在計算機-a產生一個密鑰,將其連結到電子郵件[電子郵件受保護],使用指令
gpg --gen-key
然後使用命令導出
gpg --export -a --output public.asc [email protected]
文件被傳輸到計算機-b使用命令
scp public.asc root@computer-b:/root
在計算機-b導入金鑰時出現問題(導入被跳過):
# gpg --import public.asc
gpg: key 92310EFCC934E2FB was created 133 seconds in the future (time warp or clock problem)
gpg: key 92310EFCC934E2FB was created 133 seconds in the future (time warp or clock problem)
gpg: key 92310EFCC934E2FB was created 133 seconds in the future (time warp or clock problem)
gpg: key 92310EFCC934E2FB was created 133 seconds in the future (time warp or clock problem)
gpg: key 92310EFCC934E2FB: new key but contains no user ID - skipped
gpg: Total number processed: 1
gpg: w/o user IDs: 1
顯然使用者身分(IE[電子郵件受保護])是預期的,但我無法猜測如何提供它。
我是gpg新手,我在網路上搜尋過,但找不到類似的問題。也許原因太明顯了?
謝謝你的幫忙。