diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-03-31 02:07:38 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-03-31 02:07:38 +0000 |
commit | 6ea61d5e0dd7a5990ab2a5a8198cef425718f81f (patch) | |
tree | 7ed4d3dda872d0caa280242dfad8eda471f6d83c /doc | |
parent | 670aeb6c8d894cb99a809fd7cc4f516cd0e54933 (diff) | |
download | tor-6ea61d5e0dd7a5990ab2a5a8198cef425718f81f.tar tor-6ea61d5e0dd7a5990ab2a5a8198cef425718f81f.tar.gz |
Parse and generate service descriptors
svn:r1403
Diffstat (limited to 'doc')
-rw-r--r-- | doc/TODO | 4 | ||||
-rw-r--r-- | doc/rend-spec.txt | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -105,9 +105,9 @@ Rendezvous service: can be in.) [NM] o Add circuit metadata [NM] 3 hours - Code to configure hidden services [NM] 4 hours - - Service descriptors + . Service descriptors - OPs need to maintain identity keys for hidden services [NM] 1 hour - - Code to generate and parse service descriptors [NM] 4 hours + o Code to generate and parse service descriptors [NM] 4 hours - Advertisement . Generate y.onion hostnames [NM] 1 hour - Code to do an HTTP connection over Tor from within Tor [RD] diff --git a/doc/rend-spec.txt b/doc/rend-spec.txt index 0130d4967..9c7ad34c2 100644 --- a/doc/rend-spec.txt +++ b/doc/rend-spec.txt @@ -108,13 +108,13 @@ Tor Rendezvous Spec KL Key length [2 octets] PK Bob's public key [KL octets] - TS A timestamp [8 octets] + TS A timestamp [4 octets] NI Number of introduction points [2 octets] Ipt A list of NUL-terminated OR nicknames [variable] SIG Signature of above fields [KL octets] KL is the length of PK, in octets. (Currently, KL must be 128.) - TS is the number of milliseconds elapsed since Jan 1, 1970. + TS is the number of seconds elapsed since Jan 1, 1970. [Shouldn't the nicknames be hostname:port's instead? That way, Alice's directory servers don't need to know Bob's chosen introduction points. |