pgp.rst
changeset 2040 850213dfd351
parent 1912 8b81a8f0f692
child 2041 c9c950bc5487
equal deleted inserted replaced
2039:98dc1bd1060b 2040:850213dfd351
     3 ==========
     3 ==========
     4  PGP/GPG.
     4  PGP/GPG.
     5 ==========
     5 ==========
     6 .. contents::
     6 .. contents::
     7    :local:
     7    :local:
       
     8 
       
     9 Documentation
       
    10 =============
       
    11 
       
    12 https://wiki.archlinux.org/index.php/GnuPG
       
    13   ArchLinux wiki.
     8 
    14 
     9 What preffered client?
    15 What preffered client?
    10 ======================
    16 ======================
    11 
    17 
    12 GNU gpg.
    18 GNU gpg.
   123 =====================
   129 =====================
   124 ::
   130 ::
   125 
   131 
   126   $ gpg --verify $file.sig
   132   $ gpg --verify $file.sig
   127 
   133 
       
   134 How to backup private key?
       
   135 ==========================
       
   136 
       
   137 Make a copy::
       
   138 
       
   139   $ gpg --export-secret-keys --armor $KEYID > privkey.asc
       
   140 
       
   141 Restore from copy::
       
   142 
       
   143   $ gpg --allow-secret-key-import --import privkey.asc
       
   144