]> sipb.mit.edu Git - wiki.git/blob - doc/zcrypt.mdwn
remove footnote marker
[wiki.git] / doc / zcrypt.mdwn
1 Zephyr at MIT doesn't support* limiting who can sub to a zephyr class, so if you want to have reasonably private conversations, encrypting them is a good idea. `zcrypt` is the standard tool for that.
2
3 `zcrypt` encrypts message bodies, but not the message metadata. In particular, instances are visible to anyone who receives a message (as are senders, times, zsigs, etc., though that's less-frequently an issue).
4
5 ## Creating a `zcrypt`ed zephyr class
6
7 The main requirement for a `zcrypt`ed zephyr class is to distribute a key to all the intended users of the class. Typically, this is done by storing the key in AFS. You can set that up like this:
8
9     mkdir -p ~/Public/zcrypt/label/                     # Pick an arbitrary label for your class.
10     fs sa ~/Public/zcrypt/label/ system:anyuser none    # Keep randoms from reading your key
11     fs sa ~/Public/zcrypt/label/ system:groupname read  # Allow an appropriate user/group to read the key
12     tr -d '\000\n' < /dev/urandom | head -c 126 > ~/Public/zcrypt/label/key.zcrypt
13
14 The first three lines create a directory to store the key, and set the permissions properly. You should replace `label` with an appropriate name; you may want to use something besides the class name in order to help keep the class name private. Subbing to the class will disclose traffic patterns and instances used, so you may want to use the traditional "secret class" (keeping the name secret) as a first line of defense, in addition to `zcrypt`.
15
16 The last line creates the key, which should be a random byte string of at least 126 characters, none of which should be null or newlines.
17
18 ## Subbing to a `zcrypt`ed zephyr class
19
20 This may vary between clients. For traditional zephyr clients, you should sub as usual (in BarnOwl, run `:sub classname`, or edit your `.zephyr.subs` file, then run `:loadsubs` in BarnOwl).
21
22 You should also have been told a key path. In the example above, that would be `/mit/user/Public/zcrypt/label/key.zcrypt` (where `user` is your Athena username).
23
24 You can configure the key by running
25
26     echo "crypt-classname: AES:/mit/user/Public/zcrypt/label/key.zcrypt" >> ~/.crypt-table
27
28 Replace `classname` and the path appropriately. (You can also leave off "AES:" to use the key with 1DES, but that is very weak, and should not be used in new classes.)
29
30 <small>* This is only mostly true. Zephyr supports limiting who can sub to zephyr classes, and Moira has support to control zephyr's support. However, there's no self-service support for setting up ACL'd classes, and I don't believe anybody with the relevant bits is interested in setting up classes for student groups or similar uses, so the technical ability isn't practically useful.</small>