আপনি যে সমস্যার মুখোমুখি হচ্ছেন তা আমি পুনরুত্পাদন করতে পরিচালিত করেছিলাম। আমি নিম্নলিখিতগুলি করে যা করেছি:
$ 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 --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 "প্রান্তিক" বিশ্বাস শংসাপত্র (যেখানে আপনি জানেন কেউ, আপনি জানেন এমন কাউকে কে জানে ... শংসাপত্রটিতে স্বাক্ষর করেছেন)।
জিপিজি হ'ল একটি সুরক্ষা অ্যাপ্লিকেশন, কারণ আপনি যদি এমন কোনও কীতে এনক্রিপ্ট করার চেষ্টা করছেন যা বিশ্বস্ত হিসাবে তালিকাভুক্ত নয়। এক্ষেত্রে আপনার নিজস্ব কী বিশ্বাসযোগ্য না হওয়ার কারণটি সহজ। এর কারণ আপনি পূর্ববর্তী জিপিজি উদাহরণ থেকে বিশ্বাসের সম্পর্ক রফতানি করেন নি। এটি করার জন্য, - - রপ্তানি-মালিকের কাঠামো এবং - आयात - মালিকের কমান্ড ব্যবহার করুন।
সর্বদা হিসাবে, ম্যান পৃষ্ঠা দেখুন ।