Khi bạn có cặp khóa gpg cục bộ, bạn có thể nhập khóa không xác định vào bộ khóa của người dùng cục bộ. Trong trường hợp của tôi, khóa 5CC908FDB71E12C2
cần phải được nhập như sau.
$ gpg --recv-keys 5CC908FDB71E12C2
gpg: keybox '/home/user/.gnupg/pubring.kbx' created
gpg: key 5CC908FDB71E12C2: 8 signatures not checked due to missing keys
gpg: /home/aaron/.gnupg/trustdb.gpg: trustdb created
gpg: key 5CC908FDB71E12C2: public key "Daniel Stenberg <daniel@haxx.se>" imported
gpg: no ultimately trusted keys found
gpg: Total number processed: 1
gpg: imported: 1
ID khóa -recv-key: Nhập các khóa có ID khóa đã cho từ máy chủ khóa.
Nếu không thành công, bạn có thể cần phải tạo kho khóa / cơ sở dữ liệu gpg cục bộ.
Các bước dưới đây có thể không còn cần thiết vì bước trên bây giờ tạo cơ sở dữ liệu khóa cục bộ cho bạn. Điều này phụ thuộc vào distro của bạn và gpg
phiên bản và cấu hình.
Nếu bạn chưa có gpg
cơ sở dữ liệu quan trọng cho người dùng cục bộ của bạn.
gpg --generate-key
hoặc là
gpg --full-gen-key
Những gì các tài liệu nói.
--generate-key
--gen-key
Generate a new key pair using the current default parameters. This is the standard command to create a new key. In addition to the key a revocation certificate is created and stored in the
‘openpgp-revocs.d’ directory below the GnuPG home directory.
--full-generate-key
--full-gen-key
Generate a new key pair with dialogs for all options. This is an extended version of --generate-key.
There is also a feature which allows you to create keys in batch mode. See the manual section ``Unattended key generation'' on how to use this.