无法在linux中生成gpg密钥

时间:2015-03-02 04:00:49

标签: linux gpgpu gnupg gpgme

我无法在linux中生成GPG密钥

sudo gpg --gen-key      # This is the command to try to generate key

错误

You need a Passphrase to protect your secret key.

gpg: problem with the agent: Timeout        
gpg: Key generation canceled.

请让我知道我在哪里做错了

1 个答案:

答案 0 :(得分:7)

请查看

1)运行gpg-agent命令:

gpg-agent --daemon --use-standard-socket --pinentry-program /usr/bin/pinentry-curses

2)生成足够的熵

sudo rngd -r /dev/urandom

3)最后运行gpg命令生成密钥:

gpg --gen-key

请仅使用非root用户运行所有命令

请使用相同的用户登录,该用户用于创建gpg密钥。

1.我们将导出我们的公钥和私钥,如下所示:

  user$ gpg --export -a -o mypublickey.txt user@replaceurmail.com
  user$ gpg --export-secret-key -a -o myprivatekey.txt user@replaceurmail.com
  user$ ls my*

myprivatekey.txt mypublickey.txt

  1. 导入具有相同用户的密钥

    User$ gpg --import myprivatekey.txt
    
  2. 现在尝试使用相同的用户解密

相关问题