diff --git a/articles/guides/GPG/GPG.html b/articles/guides/GPG/GPG.html new file mode 100644 index 0000000..9eeeccb --- /dev/null +++ b/articles/guides/GPG/GPG.html @@ -0,0 +1,328 @@ +
Note: If gpg2 gives you error about invalid/unknown/etc. command, use gpg instead.
+You need at least package gnupg, but I recommend installing packages icedove enigmail pinentry pinentry-curses pinentry-gtk2 pinentry-qt4 signing-party and gnupg2.
+++aptitude install gnupg gnupg2 icedove enigmail pinentry-curses pinentry-gtk2 pinentry-qt4 signing-party gnupg2
+
NOTE: If you aren't using Debian, install package "thunderbird" instead of "icedove".
+You need at least GPG-tools, but I also recommend you to install Thunderbird and Enigmail.
+You need at least GPG4Win, but I recommend installing Thunderbird and Enigmail too.
+This depends are you generating a new key or importing old key.
+Open terminal (or cmd.exe if you are using Windows) and run
+++gpg2 --gen-key
+
Notes:
+When you are asked for key size, enter the maximum size.
When you are asked for email address, leave it empty. We will add it later.
First you need to find out the ID of the key, which you just created. You can see it with two commands.
+++gpg2 --list-keys
+
Example output:
+% gpg --list-keys
+pub 4096R/82A46728 2012-03-27
+uid Mika Suomalainen
+sub 4096R/A4271AC5 2012-03-27
+or
+++gpg2 --fingerprint
+
Example output:
+% gpg2 --fingerprint
+pub 4096R/82A46728 2012-03-27
+Key fingerprint = 24BC 1573 B8EE D666 D10A AA65 4DB5 3CFE 82A4 6728
+uid Mika Suomalainen
+sub 4096R/A4271AC5 2012-03-27
+The second command also shows the key fingerprint which is usually used to identify the key. Note that you can see both keyid formats in fingerprint. The last eght characters in keyid are the short format and the last sixteen characters are the long format. If you want to see the long keyid, run
+++gpg2 --list-keys --keyid-format long
+
Now add the uid with the following commands:
+++gpg2 --edit-key KEYID
+
and enter command:
+++adduid
+
and you are asked for name and email address again. This time you can give them both.
+If that UID which has only your first name isn't the first UID, select it by giving command, which is the number of the UID, for example:
+++2
+
and * appears to that UID to tell you that that UID is selected. Now give command
+++primary
+
to make it the primary UID again.
+Now you can exit from GPG with
+++quit
+
and confirm to save changes with
+++y
+
You can import your old private key same way as you import public keys. This means:
+++gpg2 --import key.asc
+
Where key.asc is the file, which contains the (private) key(s)
+You need to know your keyid. I told you how to get it in "Adding new uids". To back up your private key, run
+++gpg2 --export-secret-keys -a KEYID
+
and save the output of that command to file. If you are on Linux or Mac OS X, you can forward the output directly to file, with
+++gpg2 --export-secret-keys -a KEYID > privatekey.asc
+
The previous command creates a file called "privatekey.asc", which contains the output of the first command.
+The configuring of gpg happens in gpg configuration directory. In Linux and Mac this is ~/.gnupg/gpg.conf.
+I recommend you to add following lines to it. I'll try to explain them with my best ability.
+# Options for GnuPG # Copyright 1998, 1999, 2000, 2001, 2002, 2003, # 2010 Free Software Foundation, Inc. # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # # This file is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
License information so I won't break license of the default config file, which I have appended.
++default-key KEYID
+
So KEYID is used by default if there are multiple secret keys.
+default-recipient-self
+encrypt-to KEYID
+So everything what you encrypt is also encrypted to you.
+++charset UTF-8
+
So UTF-8 is used as default character set and most of characters can be used.
+keyserver hkp://pool.sks-keyservers.net
+keyserver-options auto-key-retrieve no-include-revoked verbose
+So default keyserver is specified and unknown keys are always received when something what requires missing key is procressses and revoked keys aren't included in search results and verbose output is used.
+By the way, you can find my gpg.conf here.
+Group lines are a way to write email to one recepient and have it encrypted to multiple keys automatically.
+Example group line:
+++group =82A46728 8449A12B 666CC0DD 4EC00206
+
With that line, when recepient is touchlay-server@googlegroups.com, then emails are encrypted to those 4 keys.
+NOTE: I think that group lines require email addresses to be in format
++ ++
See also my Enigmail instructions about group lines.
+GPG can automatically add comments to signed and encrypted content. They are usually hidden by email clients, which support GPG.
+Example comment:
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+Signed content.
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.19 (GNU/Linux)
+Comment: This is a comment.
+
+iQIcBAEBAgAGBQJP0ypzAAoJEE21PP6CpGcojpsP/jV8o398xaCOCtdk5gyZtSZG
+KYDbyV8dNk1jxyNb7yPuEHGdm2BNXuKDHoG1vOli1yfavDvZ7Ir6i6HqDINRt6QF
+TFcWQgurMtXEJ4zCbMwBHM5OCpRL0gtuK/ERZFWeA+zDuM/pDKWLcX9REriT5CaG
+CWBBvCIf/C2imGqe3+KBKSy13pis7MXARCTHesTOV/z04vKfsVqh7+M60ss/sc48
+kkL7CR/RiovomeoDhWuwS63oDE49eG+hlMDswgehnx71bvYr2NBZ3qfls4utx3fj
+ro4ubRGW52tY9wIC1tZoNiqa/n9Z6jOIq76Vn5DaJQ1dKWn3MnA5Sv2ztV4GlaIO
+iTLkvavAe7KHVxDCKcHpI7vnj9JlahF1u8+JDHXbTePDE3MiQvK1uEK91EQP9kYT
+EYQwuClDfVGNBgqORTzZUpszYrT1dCdLte+29RdkHzsC+32x540xLvkDFvkZ+92Y
+7LxCX83aKzIdAZmehNmSrzQAL+NCfMW3YjkvWOYoFFMd//nSVifCbxvRLsyv7npr
+Fowb/UnnZW3ScT/sFNJWH/xY5skDS8WZd3H6O7MJ8gHUeOR9YQepQX56kvSRVtbj
+ncnVEtqLjlbMpHEFy9ykKgM6rzuRTzLRct7Tf787Ww4hgSN92lhetPZmi6BGcS1z
+ZRzFq367A+HsVMlihBjd
+=HKS4
+-----END PGP SIGNATURE-----
+To add comments, use "--comment" flag or add "comment" lines to gpg.conf:
+For example:
+++comment "Something"
+
Appears as
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+
+This is signed content, which has comment, which reads "Something".
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.19 (GNU/Linux)
+Comment: Something
+
+iQIcBAEBAgAGBQJP0yt8AAoJEE21PP6CpGcoHskP/jLift0y8tA7VnmbIyFfOr2J
+RVJfcc/cl8xvbnhSKIOa5rS47Z9MgVqf8KDY373E1CZMvOsdx4yPINMJb4901iBQ
+71RCRcg45YUI+yWRlZ2+ZsE7NBgUWm2cdSbwfaWrxH2eL8zRN+G5c3qiAQu0pXY5
+Mc1MG6ZQQzz3v+SrYPB6aZn8R8uNQR6U1YfbhtG1daxIfzdbXQNqMi/pIDV+M5GY
+IS3Wbbp57pvJ8R3EjvqMsDKv76L/ZFySlrAugQaZIj4lQVUzXhivBwzkaHslj6dP
+HSGamz3C4yX5GPe/QBJ8jgANAtmdx2+1IpoRRqiLrOOT48vRkCFM40VwjMVO4W+B
+wNg9BQUpB53/QBtpQ5kDHrpPA+6bS4QkzUIzMsMuSvF9w15vG+Ae7qozD/YTLeD/
+IBaRlqPIRI/CrOEfUfn0DE6bFKTMgf4WE5M8IZ2kBVAE/mBqicJ9QKI53it8Ru4M
+hznPzwtmQTHf02yaj06LjB1P0SYU3gjwioRN+3RVoCRC92rjW5gN4MBYR0jKydp6
+MHf2Mg+ped1BegBDEVD4FyDPw/LNmveZb5O8/KIpjdb9dMgP5uqDpvJEzS64OQf0
+vtzYEnCrJW+/1ABuGoF2aKG7+i24gLt9re+jOb02dj5NxRc1tWmhVNVM/acwReVr
+1ELecm6kOS0qlPF//OnU
+=Ilhi
+-----END PGP SIGNATURE-----
+Comments can be whatever you want. For example they can have link to your homepage or command to receive your key from keyserver etc.
+There are two ways to share your key. I personally use and recommend them both.
+If you have homepage, it's recommended that you put your key there. My key can be found at PGP/key.txt
+You can get your public key with command
+++gpg2 --export -a KEYID
+
or if you use Linux and have installed package signing-party, you can use
+++pgp-clean KEYID
+
to get your public key without signatures (I will explain them later). WARNING: pgp-clean seems to also remove encryption subkey.
+If you followed my configuration, you are usng pool.sks-keyservers.net as your keyserver and you are automatically receiving unknown keys from t, whenever you try to verify something, what is signed with unknown key.
+To send your public key to keyserver, run
+++gpg2 --send-keys KEYID
+
To receive key from keyserver, run
+++gpg2 --recv-keys KEYID
+
To search keys from keyserver, use
+++gpg2 --search-keys QUERY WORDS
+
or if you are using Linux and have packages signing-party and dialog installed, you can use
+++keylookup QUERY WORDS
+
Keyservers only append content. Information on keyserver cannot be removed. This means, that when you delete uid, signature or whatever, it reappears when you run
+++gpg2 --refresh-keys
+
or receive your key from keyserver again. Thought content (uids, signatures, keys etc.) can be revoked.
+But you should continue reading to understand how to use GPG without email client.
+If you want to make gpg know that you trust key of another person, you have two opinons. Enter the "key editing shell", with
+++gpg2 --edit-key KEYID
+
and
+Lsign signs the key locally making it impossible to export the signature. Use it if you trust the key owner to be who the key says, but you haven't met him/her personally.
+Lsign the key with
+++lsign
+
and then you can exit gpg with
+++quit
+
confirming to svae changes with
+++y
+
If you trust the key owner to be whom the key says and you have met him/her personally and have seen proof of his/her identify (i.e. passport) or he/she is member of your family or long time friend, you can sign the key with
+++sign
+
making the signature exportable or sendable to keyserver. Now exit gpg with
+++quit
+
saving the changes with
+++y
+
and send the signed key to keyserver with
+++gpg2 --send-keys KEYID
+
Other people will see your signature next time when they receive the key agan or run
+++gpg2 --refresh-keys
+
NOTE: You can upgrade lsigned signature to signed signature with the "sign" command.
+Trust determines does gpg trust the key to validate other keys. Trust is only visible to you. You can se trust with
+++trust
+
and then exit gpg with
+++quit
+
saving the changes with
+++y
+
Run
+++gpg2 --clearsign
+
and write your message. When you are ready, add one empty line and press CTRL-D and gpg outputs signed message.
+Just run
+++gpg2 --clearsign file.txt
+
and the signed content will be found from file.txt.asc
+NOTE: .asc is same as .txt and can be opened with normal text editor.
+Just run
+++gpg2
+
and paste the signed content, add one empty line and press CTRL-D.
+Run
+++gpg2 --verify file.sig
+
and you are asked for signed file.
+To encrypt a message, just run
+++gpg2 --encrypt -a -r receiver (-r receiver...)
+
If you followed my configuration instructions, you are automatically receiver. Replace "receiver" with KEYID. Write your message, add empty line and press CTRL-D and gpg outputs encrypted content.
+Just run
+++gpg2 --decrypt
+
paste the encrypted content, add empty line and press CTRL-D and gpg outputs, the decrypted content.
+My Icedove / Thunderbird guide and Enigmail guide.
+
GPG guide by Mika Suomalainen is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
Just email me, the addresses can be found from my GPG key, which has been mentioned on this page some times. Please cleasign your question, so I won't get power to fake it, and please don't use HTML.