Setelah memiliki pasangan kunci gpg lokal, Anda dapat mengimpor kunci yang tidak dikenal ke set kunci pengguna lokal Anda. Dalam kasus saya, kuncinya 5CC908FDB71E12C2
perlu diimpor sebagai berikut.
$ 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
--recv-keys ID kunci: Mengimpor kunci dengan ID kunci yang diberikan dari server kunci.
Jika hal di atas gagal, Anda mungkin perlu membuat keystore / database gpg lokal.
Langkah-langkah di bawah ini mungkin tidak lagi diperlukan karena langkah di atas sekarang membuat basis data kunci lokal untuk Anda. Ini tergantung pada distro Anda dan gpg
versi serta konfigurasi.
Jika Anda belum memiliki gpg
basis data kunci untuk pengguna lokal Anda.
gpg --generate-key
atau
gpg --full-gen-key
Apa kata dokter.
--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.