Linux Security Cookbook [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Linux Security Cookbook [Electronic resources] - نسخه متنی

Daniel J. Barrett, Robert G. Byrnes, Richard Silverman

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید










Recipe 7.10 Adding Keys to Your Keyring



7.10.1 Problem


You want to add a public or secret key to
your keyring.


7.10.2 Solution


If the public key is in the file
keyfile:

$ gpg --import keyfile

If the secret key is in the file
keyfile:

$ gpg --import --allow-secret-key-import keyfile


7.10.3 Discussion


Importing the secret key implicitly imports the public key as well,
since the public key is derivable from the secret one.


7.10.4 See Also


gpg(1).

/ 247