-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproof220.mod
155 lines (137 loc) · 2.34 KB
/
proof220.mod
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
-- I) Base case
open INV
op h100 : -> Hash .
op r100 : -> Random .
op e100 : -> Expo .
red inv220(init,h100,r100,e100) .
close
-- sdm1
open ISTEP
op h100 : -> Hash .
op r100 : -> Random .
op e100 : -> Expo .
--
ops p10 q10 : -> Principal .
op r10 : -> Random .
op d10 : -> Dompar .
--
eq s' = sdm1(s,p10,q10,r10,d10) .
red istep220(h100,r100,e100) .
close
-- sdm2
open ISTEP
op h100 : -> Hash .
op r100 : -> Random .
op e100 : -> Expo .
--
ops p10 q10 : -> Principal .
op m10 : -> Message1 .
op r10 : -> Random .
--
eq s' = sdm2(s,p10,q10,r10,m10) .
red istep220(h100,r100,e100) .
close
--
-- sdm3
--
open ISTEP
op h100 : -> Hash .
op r100 : -> Random .
op e100 : -> Expo .
--
ops p10 q10 : -> Principal .
op m10 : -> Message1 .
op m2001 : -> Message2 .
op m2002 : -> Message2 .
--
eq s' = sdm3(s,p10,q10,m10,m2001,m2002) .
red istep220(h100,r100,e100) .
close
--
-- fkm11
--
open ISTEP
op h100 : -> Hash .
op r100 : -> Random .
op e100 : -> Expo .
--
ops p10 q10 : -> Principal .
op c10 : -> Cipher1 .
--
eq s' = fkm11(s,p10,q10,c10) .
red istep220(h100,r100,e100) .
close
--
-- fkm12
--
open ISTEP
op h100 : -> Hash .
op r100 : -> Random .
op e100 : -> Expo .
--
ops p10 q10 : -> Principal .
op r10 : -> Random .
op d10 : -> Dompar .
--
eq s' = fkm12(s,p10,q10,r10,d10) .
red istep220(h100,r100,e100) .
close
--
-- fkm21
--
open ISTEP
op h100 : -> Hash .
op r100 : -> Random .
op e100 : -> Expo .
--
ops p10 q10 : -> Principal .
op e10 : -> Expo .
--
eq s' = fkm21(s,p10,q10,e10) .
red istep220(h100,r100,e100) .
close
--
-- fkm22
--
open ISTEP
op h100 : -> Hash .
op r100 : -> Random .
op e100 : -> Expo .
--
ops p10 q10 : -> Principal .
ops r10 r20 : -> Random .
op d10 : -> Dompar .
--
eq s' = fkm22(s,p10,q10,r10,r20,d10) .
red istep220(h100,r100,e100) .
close
--
-- fkm31
--
open ISTEP
op h100 : -> Hash .
op r100 : -> Random .
op e100 : -> Expo .
--
ops p10 q10 : -> Principal .
op c30 : -> Cipher3 .
--
eq s' = fkm31(s,p10,q10,c30) .
red istep220(h100,r100,e100) .
close
--
-- fkm32
--
open ISTEP
op h100 : -> Hash .
op r100 : -> Random .
op e100 : -> Expo .
--
ops p10 q10 : -> Principal .
op r10 : -> Random .
op d10 : -> Dompar .
ops e10 e20 : -> Expo .
--
eq s' = fkm32(s,p10,q10,r10,e10,e20,d10) .
red istep220(h100,r100,e100) .
close