update doc

pull/1/head
Jeff Becker 6 years ago
parent f80cce26c6
commit b354dbd492
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -358,7 +358,7 @@ this establishes the downstream keys.
a: "a",
c: [ list, of, encrypted, LCAR],
l: encrypted frame for path creator,
r: "<16 bytes rx hop>",
t: "<16 bytes tx hop>",
v: 0
}
@ -390,47 +390,44 @@ popped off and the last element filled with random.
link relay upstream message (LRUM)
sent to relay data via upstream direction of a previously created path.
decrypt z using previously derived upstream key and nounce y. Relay with new_y
and new_z in upstream direction as a LRUM.
h = MDS(x, k_up)
verify h == z[0:32]
new_x = SD(k_up, y, x)
new_y = y ^ new_x[0:24]
new_z = z[32:] + RAND(32)
{
a: "u",
p: "<16 bytes tx path id>",
v: 0,
x: "<insert N bytes payload here>",
y: "<insert 24 bytes nounce here>",
z: "<256 bytes rolling hmac>"
x: "<N bytes encrypted x1 value>",
y: "<32 bytes nonce>",
z: "<discard>"
}
link relay downstream message (LRDM)
plaintext x1 is a routing message
sent to relay data via downstream direction of a previously created path.
decrypt z using previously derived downstream key and nounce y. Relay with new_y
and new_z in downstream direction as a LRUM.
h = MDS(x, k_down)
verify h == z[0:32]
new_x = SD(k_down, y, x)
new_y = y ^ new_x[0:24]
new_z = z[32:] + RAND(32)
x1 = BD(SD(k_up, y[0:24], x))
new_y = HS(y + k_up)
verify new_y == x1.n
in the event we get a path data message (PDM), transmit a LRUM to next hop
{
a: "d",
p: "<16 bytes rx path id>",
v: 0,
x: "<insert N bytes payload here>",
y: "<insert 24 bytes nounce here>",
z: "<256 bytes rolling hmac>"
a: "u",
p: x1.P,
v: x1.V,
x: x1.D,
y: x1.N,
z: RAND(x1.R)
}
link relay exit message (LRXM)
if we are the farthest hop, process x1 as a routing message
link relay downstream message (LRDM)
sent to relay data via downstream direction of a previously created path.
same as LRUM but a is 'd' and p/x1.p refer to the rx path id
link relay exit message (LRXM) [under construction]
sent to exit a previously commited path before it expires.
verify signature using cancel key c in relay commit message.
@ -503,6 +500,21 @@ originated from inside a LRDM.
ipv4 addresses are allowed via ipv4 mapped ipv6 addresses, i.e. ::ffff.10.0.0.1
path data message (PDM)
intermediate path data
forward N as LRUM if we got it in a LRUM
forward N as LRDM if we got it in a LRDM
{
A: "D",
D: "<N bytes payload here>",
N: "<32 bytes next nonce>",
P: "<16 bytes next path id>",
R: number_of_bytes_Z_padding,
V: 0
}
obtain exit address message (OXAM)
sent to an exit router to obtain a NAT ip address for ip exit traffic.
@ -564,8 +576,8 @@ signed data sent anonymously over the network to a recipiant from a sender.
sent inside a TDFM encrypted to the hidden service's public encryption key.
{
A: "D",
D: "<payload bytes>",
A: "H",
H: "<payload bytes>",
I: Introducer for reply,
R: SA of recipiant,
S: SI of sender,

Loading…
Cancel
Save