diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-10-24 11:47:40 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-10-24 11:47:40 -0400 |
commit | 961c8f4838d36565ef7a54df1ed2cd692db93430 (patch) | |
tree | 72e5885efe6811e2065fe5f0bcad1c50e58e00c3 /src/or/routerkeys.c | |
parent | e3592cd8b56145201843733523a68b1706ba4556 (diff) | |
download | tor-961c8f4838d36565ef7a54df1ed2cd692db93430.tar.gz tor-961c8f4838d36565ef7a54df1ed2cd692db93430.zip |
Module-document dnsserv.c, policies.c, routerkeys.c
Diffstat (limited to 'src/or/routerkeys.c')
-rw-r--r-- | src/or/routerkeys.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/or/routerkeys.c b/src/or/routerkeys.c index ca32228fc7..7a1a2c9b2d 100644 --- a/src/or/routerkeys.c +++ b/src/or/routerkeys.c @@ -5,8 +5,13 @@ * \file routerkeys.c * * \brief Functions and structures to handle generating and maintaining the - * set of keypairs necessary to be an OR. (Some of the code in router.c - * belongs here.) + * set of keypairs necessary to be an OR. + * + * The keys handled here now are the Ed25519 keys that Tor relays use to sign + * descriptors, authenticate themselves on links, and identify one another + * uniquely. Other keys are maintained in router.c and rendservice.c. + * + * (TODO: The keys in router.c should go here too.) */ #include "or.h" |