1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/// [`SessionKey`] used in a session.
;
/// Tuple of keys for the client, the one opening the connection.
///
/// The [`ClientSessionKeys`] computed on the server has the inversed content, so that `here.tx == there.rx`
/// and `here.rx == there.tx`.
/// Tuple of keys for the server, the one receiving the connection.
///
/// The [`ServerSessionKeys`] computed on the server has the inversed content, so that `here.tx == there.rx`
/// and `here.rx == there.tx`.