-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathtmn.spdl
51 lines (41 loc) · 982 Bytes
/
tmn.spdl
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
42
43
44
45
46
47
48
49
50
# TMN
#
# Modelled after the description in the SPORE library
# http://www.lsv.ens-cachan.fr/spore/tmn.html
#
# Note:
# According to Boyd and Mathuria Kb is the session key this is not clear
# from the description in SPORE
usertype SessionKey;
const Fresh: Function;
const Compromised: Function;
protocol tmn(I,R,S)
{
role I
{
fresh Ki: SessionKey;
var Kr: SessionKey;
send_1(I,S, R,{Ki}pk(S) );
recv_4(S,I, R,{Kr}Ki );
claim_I1(I,Secret,Kr);
claim_I2(I,Nisynch);
claim_I3(I,Empty,(Fresh,Kr));
}
role R
{
fresh Kr: SessionKey;
recv_2(S,R, I );
send_3(R,S, I, { Kr }pk(S) );
claim_R1(R,Secret,Kr);
claim_R2(R,Nisynch);
claim_R3(R,Empty,(Fresh,Kr));
}
role S
{
var Ki,Kr: SessionKey;
recv_1(I,S, R,{Ki}pk(S) );
send_2(S,R, I );
recv_3(R,S, I, { Kr }pk(S) );
send_4(S,I, R,{Kr}Ki );
}
}