मैं उस समस्या को पुन: उत्पन्न करने में कामयाब रहा जो आप अनुभव कर रहे हैं। मैंने निम्न कार्य किया:
$ gpg --no-default-keyring --keyring ./test-keyring --secret-keyring ./test-secring --trustdb-name ./test-trustdb --no-random-seed-file --gen-key
<specified parameters and let it do its thing>
gpg: key 58018BFE marked as ultimately trusted
public and secret key created and signed.
<snip>
$
ध्यान दें कि प्रक्रिया ने कुंजी को "अंततः विश्वसनीय" के रूप में चिह्नित किया है।
अब मैं कुंजी निर्यात करता हूं:
$gpg --no-default-keyring --keyring ./test-keyring --secret-keyring ./test-secring --trustdb-name ./test-trustdb --no-random-seed-file --export-secret-keys -a >private.key
$gpg --no-default-keyring --keyring ./test-keyring --secret-keyring ./test-secring --trustdb-name ./test-trustdb --no-random-seed-file --export -a > public.key
अब मैं एक नए gpg डेटाबेस में आयात करता हूं:
$gpg --no-default-keyring --keyring ./test2-keyring --secret-keyring ./test2-secring --trustdb-name ./test2-trustdb --no-random-seed-file --import public.key
$gpg --no-default-keyring --keyring ./test2-keyring --secret-keyring ./test2-secring --trustdb-name ./test2-trustdb --no-random-seed-file --import private.key
अब अगर मुझे मिलने वाली नई कुंजी का उपयोग कर एन्क्रिप्ट करने का प्रयास किया जाए:
$ gpg --no-default-keyring --keyring ./test2-keyring --secret-keyring ./test2-secring --trustdb-name ./test2-trustdb --no-random-seed-file -r Fake -e
gpg: AE3034E1: There is no assurance this key belongs to the named user
pub 1024R/AE3034E1 2013-06-13 Fake User <fake@example.com>
Primary key fingerprint: AD4D BAFB 3960 6F9D 47C1 23BE B2E1 67A6 5801 8BFE
Subkey fingerprint: 58F2 3669 B8BD 1DFC 8B12 096F 5D19 AB91 AE30 34E1
It is NOT certain that the key belongs to the person named
in the user ID. If you *really* know what you are doing,
you may answer the next question with yes.
इसका कारण "ट्रस्ट ऑफ वेब" मॉडल है। डिफ़ॉल्ट रूप से, सार्वजनिक कुंजी पर भरोसा करने के लिए, इसमें या तो 1 "अंतिम" विश्वास प्रमाण पत्र की आवश्यकता होती है (आमतौर पर जहां आपने व्यक्तिगत रूप से शामिल लोगों की पहचान सत्यापित की है), या 3 "सीमांत" विश्वास प्रमाण पत्र (जहां कोई व्यक्ति आपको जानता है,) कौन जानता है कि आप किसी को जानते हैं ... प्रमाण पत्र पर हस्ताक्षर किए हैं)।
क्योंकि gpg एक सुरक्षा अनुप्रयोग है, यह आपको चेतावनी देता है यदि आप एक कुंजी को एन्क्रिप्ट करने का प्रयास कर रहे हैं जिसे विश्वसनीय के रूप में सूचीबद्ध नहीं किया गया है। इस मामले में आपकी खुद की कुंजी पर भरोसा नहीं करने का कारण सरल है। ऐसा इसलिए है क्योंकि आपने पिछले gpg उदाहरण से विश्वास संबंधों को निर्यात नहीं किया था। ऐसा करने के लिए, --export-ownertrust और --import-ownertrust कमांड का उपयोग करें।
हमेशा की तरह, मैन पेज देखें ।