Carnegie Mellon
SCS logo
Computer Science Department
home
syllabus
staff
schedule
lecture
projects
homeworks
 
 

15-410 GPG PGP page



Overview

You will generate a public/private key pair and turn in the public key information with the remainder of your homework assignment. Of course, you will need to retain the private key so you can sign documents and/or receive encrypted mail.

Because it is impractical to memorize and type in random 128-byte quantities, your PGP private key will be stored in a keyring file, encrypted with a symmetric key. Anybody who guesses that key can assume your identity, meaning they can read your encrypted files and also sign documents as if they were you, so it is vital that you choose an industrial-strength super-password, called a pass phrase.

Choosing a pass phrase is not a process to rush through, as you must come up with something which is very hard for others to guess but very easy for you to remember. Just as you wouldn't change your password right before going away on a trip, you shouldn't generate a pass phrase before going to sleep, for example.

Paranoia

You may use, but are not required to use, the GNU Privacy Guard (GPG) binary found in /usr/bin/gpg on Andrew Linux. You may instead use gpg on your personal machine or build your own copy for your Andrew account (for your reference, your instructor is currently running GPG version 1.4.5, compiled from a gnupg-1.4.5.tar.bz2 with a SHA256 hash value of f30a2679ed6bed71b4af6919cd9b963c896fca64e42eeb0536788cb41b2e1805). In addition, you may use a non-GPG OpenPGP client such as PGPi pgp, in which case these directions (though dated) may be useful.

You will be provided with directions for vaguely protecting the AFS directory which will hold the encrypted version of your key ring, but you should be aware that the truly paranoid might never store their key ring in AFS since it is an unencrypted medium outside their personal control.

If you intend to use this key permanently, it would be more secure for you to generate and use it on a cluster workstation than on a public server machine, and even more secure for you to generate and use it on a machine privately owned by someone you trust.

Finally, while these directions suggest creating unlimited-expiration keys, if you feel uncomfortable with that, you may select an expiration date for your key pair, though it should be no earlier than one month after grades are due.


Step 0 - Pass phrase

You need a pass phrase to protect your secret key. Your pass phrase can be any sentence or phrase and may have many words, spaces, punctuation, or any other printable characters.

Choosing a good pass phrase is something of an art. It should be both easy to remember (so you don't have to write it down) and hard to guess. It should be long enough that it contains a reasonable amount of entropy (so that the key will be good), but short enough that you can usually type it without making mistakes. The term "pass phrase" is intended to remind you that it should be longer than a single word -- there is no practical limit on the length of your pass phrase.

Visit one or more of these web sites and read up on the various philosophies of pass phrases:

Take 10 or 15 minutes to come up with a good pass phrase. Make sure you can memorize it, and drill yourself on it two or three times a day for the next week, then once a week for "a while".


Step 1 - Create and Protect your .gnupg directory

% mkdir ~/.gnupg
% fs sa ~/.gnupg $USER all -clear

This step is advisable because otherwise it is necessary to trust GPG to correctly understand AFS permissions in addition to standard Unix file system mode bits...I wouldn't.


Step 2 - Run GPG to generate your key pair

% /usr/bin/gpg --gen-key

gpg (GnuPG) 1.4.5; Copyright (C) 2006 Free Software Foundation, Inc.
This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions. See the file COPYING for details.

Please select what kind of key you want:
   (1) DSA and Elgamal (default)
   (2) DSA (sign only)
   (5) RSA (sign only)
Your selection?

You probably want to choose 5.

What keysize do you want? (2048)

Hit Return or enter the key size of your choice. Larger keys are more secure but operations on them are slower. If you are a cautious person and are creating a key you intend to use for some time (not a requirement for this assignment), you may wish to use 4096 bits.

Requested keysize is 4096 bits
Please specify how long the key should be valid.
         0 = key does not expire
      <n>  = key expires in n days
      <n>w = key expires in n weeks
      <n>m = key expires in n months
      <n>y = key expires in n years
Key is valid for? (0) 

Choose at least 2m.

Key expires at Fri Feb  4 01:40:36 2011 EST
Is this correct? (y/N) 

Because the N is upper-case, if you hit Return you will be prompted to correct your "mistake". If this is the expiration date you wish, type yes.

You need a user ID to identify your key; the software constructs the user ID
from the Real Name, Comment and Email Address in this form:
    "Heinrich Heine (Der Dichter) <heinrichh@duesseldorf.de>"

Real name: 

To achieve the example given by the program, you would enter:

Real name
Heinrich Heine
E-mail address
heinrichh@duesseldorf.de
Comment
Der Dichter

But don't do that. You should use the name you wish to be known by, and the email address that you will use. When others sign your PGP key, what they are really doing is creating a signed "certificate" which asserts that your key and userid belong together. In addition, the PGP tools and keyservers are able to do searches based on partial userid's, so by including both your name and email address, you make your key easier to find.

Our grading script will expect you to use $USER@andrew.cmu.edu as your e-mail address. Please bear with us for the purpose of completing this assignment; if you are already a PGP or GPG user and have a key pair with a different e-mail address, or would prefer your "real" key pair to be signed with some other address (e.g., $USER@cmu.edu), please play along with us for this assignment--you can have as many key pairs on your key ring as you wish, and you can also have multiple "user ID"'s for one key.

You selected this USER-ID:
    "Heinrich Heine (Der Dichter) <heinrichh@duesseldorf.de>"

Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? 

You must choose one of the indicated letters.

You need a Passphrase to protect your secret key.

Enter passphrase: 

There is NO WAY to recover your secret key if you forget your passphrase.

Repeat passphrase: 

At this point you have told GPG what to do. Since it is absolutely crucial that the key pair be truly random, GPG will ask you to provide it with random events for a period of time. It will ask you to type for a while. The keys you choose to press do not matter in the sense that they do not become part of your key. However, while you type random characters, GPG captures a fine-grain timestamp each time you press a key; the low-order bits of those timestamps are collected and used to feed a random-number generator.

We need to generate a lot of random bytes. It is a good idea to perform
some other action (type on the keyboard, move the mouse, utilize the
disks) during the prime generation; this gives the random number
generator a better chance to gain enough entropy.
+++++.+++++..+++++++++++++++++++++++++++++++++++..+++++..+++++++++++++
++....++.+++++.++++++++++++++++++++++++++++++...+++++...++++++++++++++
++++++.+++++...........................>+++++.........................
...........................+++++<++++>
+^^^
gpg: key 61808213 marked as ultimately trusted
public and secret key created and signed.

[...]

Note that this key cannot be used for encryption.  You may want to use
the command "--edit-key" to generate a subkey for this purpose.

We do indeed suggest you create a subkey which will allow people to send you secret documents. To do this, note the "key id" that GPG printed and launch the key editor:

% gpg --edit-key 61808213
gpg (GnuPG) 1.4.5; Copyright (C) 2006 Free Software Foundation, Inc.
This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions. See the file COPYING for details.

Secret key is available.

pub  4096R/61808213  created: 2010-11-30  expires: 2010-12-01  usage: SC  
                     trust: ultimate      validity: ultimate
[ultimate] (1). "Heinrich Heine (Der Dichter) <heinrichh@duesseldorf.de>"

Command> 
Command> addkey
Key is protected.

You need a passphrase to unlock the secret key for
user: "Heinrich Heine (Der Dichter) <heinrichh@duesseldorf.de>"
4096-bit RSA key, ID 6039C09A, created 2010-11-30

Enter passphrase: 

Please select what kind of key you want:
   (2) DSA (sign only)
   (4) Elgamal (encrypt only)
   (5) RSA (sign only)
   (6) RSA (encrypt only)
Your selection? 6
RSA keys may be between 1024 and 4096 bits long.
What keysize do you want? (2048) 4096
Requested keysize is 4096 bits
Please specify how long the key should be valid.
         0 = key does not expire
        = key expires in n days
      w = key expires in n weeks
      m = key expires in n months
      y = key expires in n years
Key is valid for? (0) 2m
Key expires at Fri Feb  4 01:40:36 2011 EST
Is this correct? (y/N) y
Really create? (y/N) y

Command> save

Please be certain that you use the save command when you're done! It might be obvious to you that if you generate a sub-key you want it to be saved, but GPG is not you.

If you wish to add another e-mail address to the key you just generated, you would again use gpg --edit-key, then the adduid command, then (you guessed it!) save.


Step 3 - Turn in your public key as part of your homework

Normally at this point you would publish your public key as widely as possible. You would put it on your web page, in your .plan file, on your business cards, hand it out to your friends, etc. You would also probably publish your public key on the world-wide PGP key server network by submitting it at http://pgpkeys.mit.edu/.

However, the CMU community is a diverse one. For all we know, one of you is from a country which would consider publication of a PGP key in your name a subversive act (even though anybody could do it at any time to smear you--governments often don't understand that sort of subtlety).

Hence we will not require you to publish your key. For the purposes of the homework assignment, we will ask you to turn in a copy of your public key, which we do not intend to publish. During the reading/finals period, we hope to organize a key-signing "party" for interested parties, but that will not be part of this homework assignment.

% /usr/bin/gpg --export -armor $USER@andrew.cmu.edu > /afs/cs.cmu.edu/academic/class/15410-s12/usr/$USER/hw2/$USER.asc

The -armor option tells GPG to emit the public key in "ASCII Armor" format, which encodes the binary information in text which should pass through mail, web forms, etc. So feel free to look at the file as you turn it in.


Step 4 - Send us a message

Here is the 15-410 public key (you trust it coming from this random web page, don't you? Wait a minute, do you need to trust it, or not? When? Hmm...). You can import it into your keyring by cutting and pasting it into a file and running:
% /usr/bin/gpg --import name-of-the-file

-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1.4.5 (FreeBSD)

mQINBEz2BgIBEADIgtP3LRE2h8IRiV5uQwBgIU0YNwAM+TqIVgJIuknh3MnAf4Va
OeJdQnZKaD09h7oDPVKffvuVQml22Q38jKRSJmvet/pDVrJvvH2YkkVTgkGSEHci
Nm8ZKsol4uZDV9dFC7e1FFWL0BX6DoWcS2IHyHoJfLGwQzmh+yMgIWgNqQFT7LA2
GN7LTFthzC8xoQCBoT3zxvHGvUJEh4HFW0YudBjTsvtFgKHspZ5vaMENPnE8nUKd
5V+XK5sdgcfrtO9toJEM57P7fnYUwf8I42S3g773kX6Jwucsnj0eWfzGexN8w2pm
z90tBXnAHZt4HaUwJ4jz9pv42PqliDbaWizs9FsNy8nokCIGoGjG2YETyl6sjltI
Q7Svgr9wBB+MvP+PX/Z2BCzElcOFdDJiKL5XH5I3gLB9uKdwlEqRfZyIBjB5KZW9
0yLQGR2INeQWtrInXziJ0Vh8Ul/Wx8GrkGYmac7FUAZKK6RKu6KEHjeOvYcjdqRq
IXyw4PtAiRgG1i5wugDkmXnk6Bpi1Ftq7MkkQaGKC52hisbfDoU56+O/tvQK3c4d
cuvHfMTBhvJADUzscJNcXWt8Upc/Q1QzQPbdSdYc5yKq4oOSTuwKa7bB7cd+Zp79
T3/aZpLqWMTP3C1tW68EIHryrrped9d3gAQV3hk4e+Aol92UKAXzaezuhwARAQAB
tCMxNS00MTAgc3RhZmYgPHN0YWZmLTQxMEBjcy5jbXUuZWR1PokCNgQTAQIAIAUC
TPYGAgIbAwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEPL/wmyd1hXtFJMP/3Mb
gsDxLIOmwLB4MUezb1aJ4dCua4j/ZNnk2wu9nQxRhC5vRYf/fbnrbkrl5v+WnUCC
OhRE9w8ZBoLrUrjqKM+tunaAd4mBSBGrEjsriyRouVcMO49kWr/1mY11IHjZdXup
nNQ9dhlXMjNo+SKVNuGLDW9nSwG9hrd+d3KvfzoFm1SoKy0oBnnrclNAofkrnlJU
JvkZBhK6uMDR1/aVi2BWbEDQBD7XjUD6mK8CPzSMn67uc7F2ZDw5GZJl2ad6XRCj
uOobbjFsrReXt8lzpHA9Hy8Spfxq9lOWY15E7mdL/GUD1PuY5JzgHigFe0r0dAaw
NwhmmwQzWP3HiqO+swc/OWWwNw1xsXFWMIQ462YPwftS2JXZxlyAK2mcvVXccbsh
Ey73s1GCZltTJ1zre00EldjmMVdCOUGI/L/m1t1jPdZ25pPIGXdO9XKAt7FdIwb2
o1XO28K3nk5GXyLyo2LZgdJDR1xVU6dbsR0f+vWGJhmk5HusQ2m4DZg/+/sOCtbx
yIlF71mtI7gTD52KwFMN1+/webmbWREgK7X8xnZnlZzVb0wgxxzcv3XypsAsLUAZ
AUNg9Hv99EHtaK6sqv7yCRTty0RFEfY6fhIva2NityzPciHmVMeUES2q5acZRePi
0pH7aqrQBHNOI7nInc6ttaB3kMX8QIe8ALw/gtCDuQINBEz2BocBEADJET8nDs6l
tZSsJPlwsUNneN5jrPelUe7lllnCiZr0MOh2TcoVLSJ00QwvI/IMVd6Sncv3USbq
9ms1tVsVkc9riJ/9cZLWV7O3RxbwrRI/IapKyhh0OhePkXQj+hyAzNc8bO1CzzAd
QAdcPIC8lPGjpVTrTNGgaO7FLJQ/l7GS09F9YcSK7zuK9BhKW+XtWWwUt94cl0Va
JWA1CuRoGsxbK8294J0LD2hPU73YkRG8BcdMI34QAeJoqe3tHvGO50mnFgJtxl7R
N+ZHzWTVLyeuhCOe0XU1bu7z0dfX/ioCl395YVSRTpmiAp+fvt6Z8u+7aWnAFRfu
ezteIlEZQcxU8XbxC4Esg8tKsFQEMJOve9gX0XdFv/sm6d0lCVMTYZShSaUrqrkY
tg5Pzz3fMGHdN5kHQqpUdU26rCLnTS+6SM0iw/sI/uSBdTwewEtJ4nO+4UKKthQR
KRc1nFgS0x8yp+sINKbH8BcX6BLb179ONg531n8mob2CVyLVQBsX/fhmbil+l0FL
YkYtWW2OvNvYBu8zZtDyQnL1AcOuubiCvzpHHUGswNGGSjD16RzI+gCBl3TyS8d2
Xlt7LFMvT5/V/RxMovXjj2scqwzNIVyZzv0JIl66oXIKS409oIVzQSrkiW/MkxU+
AJyNzziVpqv6ADMQigfS8ea8xELG5sE7uwARAQABiQIfBBgBAgAJBQJM9gaHAhsM
AAoJEPL/wmyd1hXtbA4P/i38fIIw0eWwyfuNYD2qf997oIGuKH2eQ4zVs+Ofn/yK
TThOlPNqYAYAXshSnV1uuTjAn8iF76+D0TS3LoBkNcmw4ravUcWtWbNy1sqrNSEd
XdBb5n37sfARWb8wLQzstzT1GJNIUDxBSKTA7j4c/LWK2R9CnkIg2L/aCaodU7jK
lSTszwN/c/GCiirLK2oQUEZj/oujwbQYyt1Alb7205ma0uwsB/PeWDXXsKwbOlQN
PlGAibOwenJG0zedBiCCbykiBeM8c0OrVLHtmyhqVjbMoz7NMLBqxL81AHMl1YV8
HAFkQfTY20Soy9LPGo8q1jMv6ehUfFCL5mDpHLKYQFrGzrAUILG1+s80u1fDyuIz
8qWkB9ixYdp8TXgm2puqNWLPHPUYbq6ZBUJTwtGiAl8U8q99jK9RMmI+rVdbfYnx
bdh1FesekDXrFtoE8ghHq0Rgu8M/HD3f7QHocS/VlWBjEh5xPExXjZYyNeJTKyNC
+eClITWcY8iVX7zK5xsyfoKq2Ol+DlofbcgO+oa/o/F+L3dQ3oKxy1o/tLm4Q4p0
m/82jwPljFVmBD/pxeIEHG25ogYn0ub9cvQgRgEF6T2YDOTjVgCXmrC6bboIcFs0
RoO885aU2+R9sTCySHtwQuO1JozA7KWmmUUQ6PEhkWRu6mzWX9vMLfkTnOdA2+VN
=rscA
-----END PGP PUBLIC KEY BLOCK-----
 

Now create a "secret" message for the 15-410 course staff. Put it in a file called "secret" and encrypt/sign it:
% /usr/bin/gpg --encrypt --armor --sign -r 15-410 -r $USER@andrew.cmu.edu secret

This will create a secret.asc which will be signed by you and decryptable by each recipient designated with a -r flag (you may as well include yourself!).

Turn this file in as /afs/cs.cmu.edu/academic/class/15410-s12/usr/$USER/hw2/$USER.secret.asc. Once we have your public key in our key ring, we will be able to verify that you signed the message, and decrypt it for viewing, by running
% /usr/bin/gpg /afs/cs.cmu.edu/academic/class/15410-s12/usr/$USER/hw2/$USER.secret.asc
(assuming of course we remember our passphrase).

Since $USER.secret.asc contains a symmetric-cipher message key, used to encrypt the actual text, which is then public-key encrypted with your public key and also with ours, you can decrypt the file for viewing using the same command.

There, now you understand public key cryptography! Well... it might be wise to compare the commands you ran to the lecture material on PGP as an aid to genuine understanding.


[Last modified Wednesday December 01, 2010]