]> sipb.mit.edu Git - wiki.git/commitdiff
"in which to store the key" sounds clunky, so just getting rid of the "in".
authorAnna C Gladstone <annag@mit.edu>
Sat, 28 Sep 2013 14:32:25 +0000 (10:32 -0400)
committersipb-www <sipb-www@real-mccoy.mit.edu>
Sat, 28 Sep 2013 14:32:25 +0000 (10:32 -0400)
doc/zcrypt.mdwn

index f52ee162102c8ed4fca5d78076f73ccf56a48d70..cb27e717587442e96adfaf244f08c23e908980f6 100644 (file)
@@ -11,7 +11,7 @@ The main requirement for a `zcrypt`ed zephyr class is to distribute a key to all
     fs sa ~/Public/zcrypt/label/ system:groupname read  # Allow an appropriate user/group to read the key
     tr -d '\000\n' < /dev/urandom | head -c 126 > ~/Public/zcrypt/label/key.zcrypt
 
-The first three lines create a directory to store the key in, 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`.
+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`.
 
 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.