author | huffman |
Thu, 26 Feb 2009 08:44:12 -0800 | |
changeset 30128 | 365ee7319b86 |
parent 23746 | a455e69c31cc |
child 32960 | 69916a850301 |
permissions | -rw-r--r-- |
13922 | 1 |
(* Title: HOL/Auth/CertifiedEmail |
2 |
ID: $Id$ |
|
3 |
Author: Giampaolo Bella, Christiano Longo and Lawrence C Paulson |
|
13956 | 4 |
*) |
13922 | 5 |
|
13956 | 6 |
header{*The Certified Electronic Mail Protocol by Abadi et al.*} |
13922 | 7 |
|
16417 | 8 |
theory CertifiedEmail imports Public begin |
13922 | 9 |
|
20768 | 10 |
abbreviation |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
20768
diff
changeset
|
11 |
TTP :: agent where |
20768 | 12 |
"TTP == Server" |
13922 | 13 |
|
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
20768
diff
changeset
|
14 |
abbreviation |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
20768
diff
changeset
|
15 |
RPwd :: "agent => key" where |
20768 | 16 |
"RPwd == shrK" |
13922 | 17 |
|
18 |
||
19 |
(*FIXME: the four options should be represented by pairs of 0 or 1. |
|
20 |
Right now only BothAuth is modelled.*) |
|
21 |
consts |
|
22 |
NoAuth :: nat |
|
23 |
TTPAuth :: nat |
|
24 |
SAuth :: nat |
|
25 |
BothAuth :: nat |
|
26 |
||
27 |
text{*We formalize a fixed way of computing responses. Could be better.*} |
|
28 |
constdefs |
|
29 |
"response" :: "agent => agent => nat => msg" |
|
30 |
"response S R q == Hash {|Agent S, Key (shrK R), Nonce q|}" |
|
31 |
||
32 |
||
23746 | 33 |
inductive_set certified_mail :: "event list set" |
34 |
where |
|
13922 | 35 |
|
23746 | 36 |
Nil: --{*The empty trace*} |
13922 | 37 |
"[] \<in> certified_mail" |
38 |
||
23746 | 39 |
| Fake: --{*The Spy may say anything he can say. The sender field is correct, |
13922 | 40 |
but agents don't use that information.*} |
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
41 |
"[| evsf \<in> certified_mail; X \<in> synth(analz(spies evsf))|] |
13956 | 42 |
==> Says Spy B X # evsf \<in> certified_mail" |
13922 | 43 |
|
23746 | 44 |
| FakeSSL: --{*The Spy may open SSL sessions with TTP, who is the only agent |
13922 | 45 |
equipped with the necessary credentials to serve as an SSL server.*} |
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
46 |
"[| evsfssl \<in> certified_mail; X \<in> synth(analz(spies evsfssl))|] |
13922 | 47 |
==> Notes TTP {|Agent Spy, Agent TTP, X|} # evsfssl \<in> certified_mail" |
48 |
||
23746 | 49 |
| CM1: --{*The sender approaches the recipient. The message is a number.*} |
15068
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
50 |
"[|evs1 \<in> certified_mail; |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
51 |
Key K \<notin> used evs1; |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
52 |
K \<in> symKeys; |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
53 |
Nonce q \<notin> used evs1; |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
54 |
hs = Hash{|Number cleartext, Nonce q, response S R q, Crypt K (Number m)|}; |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
55 |
S2TTP = Crypt(pubEK TTP) {|Agent S, Number BothAuth, Key K, Agent R, hs|}|] |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
56 |
==> Says S R {|Agent S, Agent TTP, Crypt K (Number m), Number BothAuth, |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
57 |
Number cleartext, Nonce q, S2TTP|} # evs1 |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
58 |
\<in> certified_mail" |
13922 | 59 |
|
23746 | 60 |
| CM2: --{*The recipient records @{term S2TTP} while transmitting it and her |
13922 | 61 |
password to @{term TTP} over an SSL channel.*} |
15068
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
62 |
"[|evs2 \<in> certified_mail; |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
63 |
Gets R {|Agent S, Agent TTP, em, Number BothAuth, Number cleartext, |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
64 |
Nonce q, S2TTP|} \<in> set evs2; |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
65 |
TTP \<noteq> R; |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
66 |
hr = Hash {|Number cleartext, Nonce q, response S R q, em|} |] |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
67 |
==> |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
68 |
Notes TTP {|Agent R, Agent TTP, S2TTP, Key(RPwd R), hr|} # evs2 |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
69 |
\<in> certified_mail" |
13922 | 70 |
|
23746 | 71 |
| CM3: --{*@{term TTP} simultaneously reveals the key to the recipient and gives |
13922 | 72 |
a receipt to the sender. The SSL channel does not authenticate |
14735 | 73 |
the client (@{term R}), but @{term TTP} accepts the message only |
74 |
if the given password is that of the claimed sender, @{term R}. |
|
13922 | 75 |
He replies over the established SSL channel.*} |
76 |
"[|evs3 \<in> certified_mail; |
|
14735 | 77 |
Notes TTP {|Agent R, Agent TTP, S2TTP, Key(RPwd R), hr|} \<in> set evs3; |
78 |
S2TTP = Crypt (pubEK TTP) |
|
79 |
{|Agent S, Number BothAuth, Key k, Agent R, hs|}; |
|
80 |
TTP \<noteq> R; hs = hr; k \<in> symKeys|] |
|
15068
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
81 |
==> |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
82 |
Notes R {|Agent TTP, Agent R, Key k, hr|} # |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
83 |
Gets S (Crypt (priSK TTP) S2TTP) # |
58d216b32199
minor tweaks to go with the new version of the Accountability paper
paulson
parents:
14735
diff
changeset
|
84 |
Says TTP S (Crypt (priSK TTP) S2TTP) # evs3 \<in> certified_mail" |
13922 | 85 |
|
23746 | 86 |
| Reception: |
13922 | 87 |
"[|evsr \<in> certified_mail; Says A B X \<in> set evsr|] |
88 |
==> Gets B X#evsr \<in> certified_mail" |
|
89 |
||
90 |
||
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
91 |
declare Says_imp_knows_Spy [THEN analz.Inj, dest] |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
92 |
declare analz_into_parts [dest] |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
93 |
|
13922 | 94 |
(*A "possibility property": there are traces that reach the end*) |
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14145
diff
changeset
|
95 |
lemma "[| Key K \<notin> used []; K \<in> symKeys |] ==> |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14145
diff
changeset
|
96 |
\<exists>S2TTP. \<exists>evs \<in> certified_mail. |
13956 | 97 |
Says TTP S (Crypt (priSK TTP) S2TTP) \<in> set evs" |
13922 | 98 |
apply (intro exI bexI) |
99 |
apply (rule_tac [2] certified_mail.Nil |
|
100 |
[THEN certified_mail.CM1, THEN certified_mail.Reception, |
|
101 |
THEN certified_mail.CM2, |
|
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14145
diff
changeset
|
102 |
THEN certified_mail.CM3]) |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14145
diff
changeset
|
103 |
apply (possibility, auto) |
13922 | 104 |
done |
105 |
||
106 |
||
107 |
lemma Gets_imp_Says: |
|
108 |
"[| Gets B X \<in> set evs; evs \<in> certified_mail |] ==> \<exists>A. Says A B X \<in> set evs" |
|
109 |
apply (erule rev_mp) |
|
110 |
apply (erule certified_mail.induct, auto) |
|
111 |
done |
|
112 |
||
113 |
||
114 |
lemma Gets_imp_parts_knows_Spy: |
|
115 |
"[|Gets A X \<in> set evs; evs \<in> certified_mail|] ==> X \<in> parts(spies evs)" |
|
116 |
apply (drule Gets_imp_Says, simp) |
|
117 |
apply (blast dest: Says_imp_knows_Spy parts.Inj) |
|
118 |
done |
|
119 |
||
120 |
lemma CM2_S2TTP_analz_knows_Spy: |
|
121 |
"[|Gets R {|Agent A, Agent B, em, Number AO, Number cleartext, |
|
122 |
Nonce q, S2TTP|} \<in> set evs; |
|
123 |
evs \<in> certified_mail|] |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
124 |
==> S2TTP \<in> analz(spies evs)" |
13922 | 125 |
apply (drule Gets_imp_Says, simp) |
126 |
apply (blast dest: Says_imp_knows_Spy analz.Inj) |
|
127 |
done |
|
128 |
||
129 |
lemmas CM2_S2TTP_parts_knows_Spy = |
|
130 |
CM2_S2TTP_analz_knows_Spy [THEN analz_subset_parts [THEN subsetD]] |
|
131 |
||
132 |
lemma hr_form_lemma [rule_format]: |
|
133 |
"evs \<in> certified_mail |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
134 |
==> hr \<notin> synth (analz (spies evs)) --> |
13922 | 135 |
(\<forall>S2TTP. Notes TTP {|Agent R, Agent TTP, S2TTP, pwd, hr|} |
136 |
\<in> set evs --> |
|
137 |
(\<exists>clt q S em. hr = Hash {|Number clt, Nonce q, response S R q, em|}))" |
|
138 |
apply (erule certified_mail.induct) |
|
139 |
apply (synth_analz_mono_contra, simp_all, blast+) |
|
140 |
done |
|
141 |
||
142 |
text{*Cannot strengthen the first disjunct to @{term "R\<noteq>Spy"} because |
|
143 |
the fakessl rule allows Spy to spoof the sender's name. Maybe can |
|
144 |
strengthen the second disjunct with @{term "R\<noteq>Spy"}.*} |
|
145 |
lemma hr_form: |
|
146 |
"[|Notes TTP {|Agent R, Agent TTP, S2TTP, pwd, hr|} \<in> set evs; |
|
147 |
evs \<in> certified_mail|] |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
148 |
==> hr \<in> synth (analz (spies evs)) | |
13922 | 149 |
(\<exists>clt q S em. hr = Hash {|Number clt, Nonce q, response S R q, em|})" |
150 |
by (blast intro: hr_form_lemma) |
|
151 |
||
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
152 |
lemma Spy_dont_know_private_keys [dest!]: |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
153 |
"[|Key (privateKey b A) \<in> parts (spies evs); evs \<in> certified_mail|] |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
154 |
==> A \<in> bad" |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
155 |
apply (erule rev_mp) |
13922 | 156 |
apply (erule certified_mail.induct, simp_all) |
157 |
txt{*Fake*} |
|
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
158 |
apply (blast dest: Fake_parts_insert_in_Un) |
13922 | 159 |
txt{*Message 1*} |
160 |
apply blast |
|
161 |
txt{*Message 3*} |
|
162 |
apply (frule_tac hr_form, assumption) |
|
163 |
apply (elim disjE exE) |
|
164 |
apply (simp_all add: parts_insert2) |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
165 |
apply (force dest!: parts_insert_subset_Un [THEN [2] rev_subsetD] |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
166 |
analz_subset_parts [THEN subsetD], blast) |
13922 | 167 |
done |
168 |
||
169 |
lemma Spy_know_private_keys_iff [simp]: |
|
170 |
"evs \<in> certified_mail |
|
171 |
==> (Key (privateKey b A) \<in> parts (spies evs)) = (A \<in> bad)" |
|
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
172 |
by blast |
13922 | 173 |
|
13956 | 174 |
lemma Spy_dont_know_TTPKey_parts [simp]: |
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
175 |
"evs \<in> certified_mail ==> Key (privateKey b TTP) \<notin> parts(spies evs)" |
13956 | 176 |
by simp |
13934 | 177 |
|
13956 | 178 |
lemma Spy_dont_know_TTPKey_analz [simp]: |
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
179 |
"evs \<in> certified_mail ==> Key (privateKey b TTP) \<notin> analz(spies evs)" |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
180 |
by auto |
13934 | 181 |
|
182 |
text{*Thus, prove any goal that assumes that @{term Spy} knows a private key |
|
183 |
belonging to @{term TTP}*} |
|
13956 | 184 |
declare Spy_dont_know_TTPKey_parts [THEN [2] rev_notE, elim!] |
13934 | 185 |
|
13922 | 186 |
|
187 |
lemma CM3_k_parts_knows_Spy: |
|
188 |
"[| evs \<in> certified_mail; |
|
189 |
Notes TTP {|Agent A, Agent TTP, |
|
13956 | 190 |
Crypt (pubEK TTP) {|Agent S, Number AO, Key K, |
13922 | 191 |
Agent R, hs|}, Key (RPwd R), hs|} \<in> set evs|] |
192 |
==> Key K \<in> parts(spies evs)" |
|
193 |
apply (rotate_tac 1) |
|
194 |
apply (erule rev_mp) |
|
195 |
apply (erule certified_mail.induct, simp_all) |
|
196 |
apply (blast intro:parts_insertI) |
|
197 |
txt{*Fake SSL*} |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
198 |
apply (blast dest: parts.Body) |
13922 | 199 |
txt{*Message 2*} |
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
200 |
apply (blast dest!: Gets_imp_Says elim!: knows_Spy_partsEs) |
13922 | 201 |
txt{*Message 3*} |
202 |
apply (frule_tac hr_form, assumption) |
|
203 |
apply (elim disjE exE) |
|
204 |
apply (simp_all add: parts_insert2) |
|
205 |
apply (blast intro: subsetD [OF parts_mono [OF Set.subset_insertI]]) |
|
206 |
done |
|
207 |
||
208 |
lemma Spy_dont_know_RPwd [rule_format]: |
|
209 |
"evs \<in> certified_mail ==> Key (RPwd A) \<in> parts(spies evs) --> A \<in> bad" |
|
210 |
apply (erule certified_mail.induct, simp_all) |
|
211 |
txt{*Fake*} |
|
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
212 |
apply (blast dest: Fake_parts_insert_in_Un) |
13922 | 213 |
txt{*Message 1*} |
214 |
apply blast |
|
215 |
txt{*Message 3*} |
|
216 |
apply (frule CM3_k_parts_knows_Spy, assumption) |
|
217 |
apply (frule_tac hr_form, assumption) |
|
218 |
apply (elim disjE exE) |
|
219 |
apply (simp_all add: parts_insert2) |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
220 |
apply (force dest!: parts_insert_subset_Un [THEN [2] rev_subsetD] |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
221 |
analz_subset_parts [THEN subsetD]) |
13922 | 222 |
done |
223 |
||
224 |
||
225 |
lemma Spy_know_RPwd_iff [simp]: |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
226 |
"evs \<in> certified_mail ==> (Key (RPwd A) \<in> parts(spies evs)) = (A\<in>bad)" |
13922 | 227 |
by (auto simp add: Spy_dont_know_RPwd) |
228 |
||
229 |
lemma Spy_analz_RPwd_iff [simp]: |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
230 |
"evs \<in> certified_mail ==> (Key (RPwd A) \<in> analz(spies evs)) = (A\<in>bad)" |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
231 |
by (auto simp add: Spy_dont_know_RPwd [OF _ analz_subset_parts [THEN subsetD]]) |
13922 | 232 |
|
233 |
||
234 |
text{*Unused, but a guarantee of sorts*} |
|
235 |
theorem CertAutenticity: |
|
13956 | 236 |
"[|Crypt (priSK TTP) X \<in> parts (spies evs); evs \<in> certified_mail|] |
237 |
==> \<exists>A. Says TTP A (Crypt (priSK TTP) X) \<in> set evs" |
|
13922 | 238 |
apply (erule rev_mp) |
239 |
apply (erule certified_mail.induct, simp_all) |
|
240 |
txt{*Fake*} |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
241 |
apply (blast dest: Spy_dont_know_private_keys Fake_parts_insert_in_Un) |
13922 | 242 |
txt{*Message 1*} |
243 |
apply blast |
|
244 |
txt{*Message 3*} |
|
245 |
apply (frule_tac hr_form, assumption) |
|
246 |
apply (elim disjE exE) |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
247 |
apply (simp_all add: parts_insert2 parts_insert_knows_A) |
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
248 |
apply (blast dest!: Fake_parts_sing_imp_Un, blast) |
13922 | 249 |
done |
250 |
||
251 |
||
252 |
subsection{*Proving Confidentiality Results*} |
|
253 |
||
254 |
lemma analz_image_freshK [rule_format]: |
|
255 |
"evs \<in> certified_mail ==> |
|
13956 | 256 |
\<forall>K KK. invKey (pubEK TTP) \<notin> KK --> |
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
257 |
(Key K \<in> analz (Key`KK Un (spies evs))) = |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
258 |
(K \<in> KK | Key K \<in> analz (spies evs))" |
13922 | 259 |
apply (erule certified_mail.induct) |
260 |
apply (drule_tac [6] A=TTP in symKey_neq_priEK) |
|
261 |
apply (erule_tac [6] disjE [OF hr_form]) |
|
262 |
apply (drule_tac [5] CM2_S2TTP_analz_knows_Spy) |
|
263 |
prefer 9 |
|
264 |
apply (elim exE) |
|
265 |
apply (simp_all add: synth_analz_insert_eq |
|
266 |
subset_trans [OF _ subset_insertI] |
|
267 |
subset_trans [OF _ Un_upper2] |
|
268 |
del: image_insert image_Un add: analz_image_freshK_simps) |
|
269 |
done |
|
270 |
||
271 |
||
272 |
lemma analz_insert_freshK: |
|
13956 | 273 |
"[| evs \<in> certified_mail; KAB \<noteq> invKey (pubEK TTP) |] ==> |
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
274 |
(Key K \<in> analz (insert (Key KAB) (spies evs))) = |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
275 |
(K = KAB | Key K \<in> analz (spies evs))" |
13922 | 276 |
by (simp only: analz_image_freshK analz_image_freshK_simps) |
277 |
||
278 |
text{*@{term S2TTP} must have originated from a valid sender |
|
279 |
provided @{term K} is secure. Proof is surprisingly hard.*} |
|
280 |
||
281 |
lemma Notes_SSL_imp_used: |
|
282 |
"[|Notes B {|Agent A, Agent B, X|} \<in> set evs|] ==> X \<in> used evs" |
|
283 |
by (blast dest!: Notes_imp_used) |
|
284 |
||
285 |
||
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
286 |
(*The weaker version, replacing "used evs" by "parts (spies evs)", |
13922 | 287 |
isn't inductive: message 3 case can't be proved *) |
288 |
lemma S2TTP_sender_lemma [rule_format]: |
|
289 |
"evs \<in> certified_mail ==> |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
290 |
Key K \<notin> analz (spies evs) --> |
13956 | 291 |
(\<forall>AO. Crypt (pubEK TTP) |
13922 | 292 |
{|Agent S, Number AO, Key K, Agent R, hs|} \<in> used evs --> |
293 |
(\<exists>m ctxt q. |
|
294 |
hs = Hash{|Number ctxt, Nonce q, response S R q, Crypt K (Number m)|} & |
|
295 |
Says S R |
|
296 |
{|Agent S, Agent TTP, Crypt K (Number m), Number AO, |
|
297 |
Number ctxt, Nonce q, |
|
13956 | 298 |
Crypt (pubEK TTP) |
13922 | 299 |
{|Agent S, Number AO, Key K, Agent R, hs |}|} \<in> set evs))" |
300 |
apply (erule certified_mail.induct, analz_mono_contra) |
|
301 |
apply (drule_tac [5] CM2_S2TTP_parts_knows_Spy, simp) |
|
302 |
apply (simp add: used_Nil Crypt_notin_initState, simp_all) |
|
303 |
txt{*Fake*} |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
304 |
apply (blast dest: Fake_parts_sing [THEN subsetD] |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
305 |
dest!: analz_subset_parts [THEN subsetD]) |
13922 | 306 |
txt{*Fake SSL*} |
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
307 |
apply (blast dest: Fake_parts_sing [THEN subsetD] |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
308 |
dest: analz_subset_parts [THEN subsetD]) |
13922 | 309 |
txt{*Message 1*} |
13956 | 310 |
apply (clarsimp, blast) |
13922 | 311 |
txt{*Message 2*} |
312 |
apply (simp add: parts_insert2, clarify) |
|
313 |
apply (drule parts_cut, assumption, simp) |
|
13934 | 314 |
apply (blast intro: usedI) |
13922 | 315 |
txt{*Message 3*} |
316 |
apply (blast dest: Notes_SSL_imp_used used_parts_subset_parts) |
|
317 |
done |
|
318 |
||
319 |
lemma S2TTP_sender: |
|
13956 | 320 |
"[|Crypt (pubEK TTP) {|Agent S, Number AO, Key K, Agent R, hs|} \<in> used evs; |
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
321 |
Key K \<notin> analz (spies evs); |
13922 | 322 |
evs \<in> certified_mail|] |
323 |
==> \<exists>m ctxt q. |
|
324 |
hs = Hash{|Number ctxt, Nonce q, response S R q, Crypt K (Number m)|} & |
|
325 |
Says S R |
|
326 |
{|Agent S, Agent TTP, Crypt K (Number m), Number AO, |
|
327 |
Number ctxt, Nonce q, |
|
13956 | 328 |
Crypt (pubEK TTP) |
13922 | 329 |
{|Agent S, Number AO, Key K, Agent R, hs |}|} \<in> set evs" |
330 |
by (blast intro: S2TTP_sender_lemma) |
|
331 |
||
332 |
||
333 |
text{*Nobody can have used non-existent keys!*} |
|
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
334 |
lemma new_keys_not_used [simp]: |
13922 | 335 |
"[|Key K \<notin> used evs; K \<in> symKeys; evs \<in> certified_mail|] |
336 |
==> K \<notin> keysFor (parts (spies evs))" |
|
337 |
apply (erule rev_mp) |
|
338 |
apply (erule certified_mail.induct, simp_all) |
|
339 |
txt{*Fake*} |
|
340 |
apply (force dest!: keysFor_parts_insert) |
|
341 |
txt{*Message 1*} |
|
342 |
apply blast |
|
343 |
txt{*Message 3*} |
|
344 |
apply (frule CM3_k_parts_knows_Spy, assumption) |
|
345 |
apply (frule_tac hr_form, assumption) |
|
346 |
apply (force dest!: keysFor_parts_insert) |
|
347 |
done |
|
348 |
||
349 |
||
350 |
text{*Less easy to prove @{term "m'=m"}. Maybe needs a separate unicity |
|
13926 | 351 |
theorem for ciphertexts of the form @{term "Crypt K (Number m)"}, |
13922 | 352 |
where @{term K} is secure.*} |
353 |
lemma Key_unique_lemma [rule_format]: |
|
354 |
"evs \<in> certified_mail ==> |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
355 |
Key K \<notin> analz (spies evs) --> |
13922 | 356 |
(\<forall>m cleartext q hs. |
357 |
Says S R |
|
358 |
{|Agent S, Agent TTP, Crypt K (Number m), Number AO, |
|
359 |
Number cleartext, Nonce q, |
|
13956 | 360 |
Crypt (pubEK TTP) {|Agent S, Number AO, Key K, Agent R, hs|}|} |
13922 | 361 |
\<in> set evs --> |
362 |
(\<forall>m' cleartext' q' hs'. |
|
363 |
Says S' R' |
|
364 |
{|Agent S', Agent TTP, Crypt K (Number m'), Number AO', |
|
365 |
Number cleartext', Nonce q', |
|
13956 | 366 |
Crypt (pubEK TTP) {|Agent S', Number AO', Key K, Agent R', hs'|}|} |
13922 | 367 |
\<in> set evs --> R' = R & S' = S & AO' = AO & hs' = hs))" |
368 |
apply (erule certified_mail.induct, analz_mono_contra, simp_all) |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
369 |
prefer 2 |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
370 |
txt{*Message 1*} |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
371 |
apply (blast dest!: Says_imp_knows_Spy [THEN parts.Inj] new_keys_not_used Crypt_imp_keysFor) |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
372 |
txt{*Fake*} |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
373 |
apply (auto dest!: usedI S2TTP_sender analz_subset_parts [THEN subsetD]) |
13922 | 374 |
done |
375 |
||
376 |
text{*The key determines the sender, recipient and protocol options.*} |
|
13926 | 377 |
lemma Key_unique: |
13922 | 378 |
"[|Says S R |
379 |
{|Agent S, Agent TTP, Crypt K (Number m), Number AO, |
|
380 |
Number cleartext, Nonce q, |
|
13956 | 381 |
Crypt (pubEK TTP) {|Agent S, Number AO, Key K, Agent R, hs|}|} |
13922 | 382 |
\<in> set evs; |
383 |
Says S' R' |
|
384 |
{|Agent S', Agent TTP, Crypt K (Number m'), Number AO', |
|
385 |
Number cleartext', Nonce q', |
|
13956 | 386 |
Crypt (pubEK TTP) {|Agent S', Number AO', Key K, Agent R', hs'|}|} |
13922 | 387 |
\<in> set evs; |
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
388 |
Key K \<notin> analz (spies evs); |
13922 | 389 |
evs \<in> certified_mail|] |
390 |
==> R' = R & S' = S & AO' = AO & hs' = hs" |
|
391 |
by (rule Key_unique_lemma, assumption+) |
|
392 |
||
13934 | 393 |
|
13926 | 394 |
subsection{*The Guarantees for Sender and Recipient*} |
395 |
||
13934 | 396 |
text{*A Sender's guarantee: |
397 |
If Spy gets the key then @{term R} is bad and @{term S} moreover |
|
13922 | 398 |
gets his return receipt (and therefore has no grounds for complaint).*} |
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
399 |
theorem S_fairness_bad_R: |
13922 | 400 |
"[|Says S R {|Agent S, Agent TTP, Crypt K (Number m), Number AO, |
401 |
Number cleartext, Nonce q, S2TTP|} \<in> set evs; |
|
13956 | 402 |
S2TTP = Crypt (pubEK TTP) {|Agent S, Number AO, Key K, Agent R, hs|}; |
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
403 |
Key K \<in> analz (spies evs); |
13922 | 404 |
evs \<in> certified_mail; |
405 |
S\<noteq>Spy|] |
|
13956 | 406 |
==> R \<in> bad & Gets S (Crypt (priSK TTP) S2TTP) \<in> set evs" |
13922 | 407 |
apply (erule rev_mp) |
408 |
apply (erule ssubst) |
|
13956 | 409 |
apply (erule rev_mp) |
13922 | 410 |
apply (erule certified_mail.induct, simp_all) |
411 |
txt{*Fake*} |
|
412 |
apply spy_analz |
|
413 |
txt{*Fake SSL*} |
|
414 |
apply spy_analz |
|
415 |
txt{*Message 3*} |
|
416 |
apply (frule_tac hr_form, assumption) |
|
417 |
apply (elim disjE exE) |
|
418 |
apply (simp_all add: synth_analz_insert_eq |
|
419 |
subset_trans [OF _ subset_insertI] |
|
420 |
subset_trans [OF _ Un_upper2] |
|
421 |
del: image_insert image_Un add: analz_image_freshK_simps) |
|
422 |
apply (simp_all add: symKey_neq_priEK analz_insert_freshK) |
|
423 |
apply (blast dest: Notes_SSL_imp_used S2TTP_sender Key_unique)+ |
|
424 |
done |
|
425 |
||
426 |
text{*Confidentially for the symmetric key*} |
|
427 |
theorem Spy_not_see_encrypted_key: |
|
428 |
"[|Says S R {|Agent S, Agent TTP, Crypt K (Number m), Number AO, |
|
429 |
Number cleartext, Nonce q, S2TTP|} \<in> set evs; |
|
13956 | 430 |
S2TTP = Crypt (pubEK TTP) {|Agent S, Number AO, Key K, Agent R, hs|}; |
13922 | 431 |
evs \<in> certified_mail; |
432 |
S\<noteq>Spy; R \<notin> bad|] |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
433 |
==> Key K \<notin> analz(spies evs)" |
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
434 |
by (blast dest: S_fairness_bad_R) |
13922 | 435 |
|
436 |
||
437 |
text{*Agent @{term R}, who may be the Spy, doesn't receive the key |
|
438 |
until @{term S} has access to the return receipt.*} |
|
439 |
theorem S_guarantee: |
|
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
440 |
"[|Says S R {|Agent S, Agent TTP, Crypt K (Number m), Number AO, |
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
441 |
Number cleartext, Nonce q, S2TTP|} \<in> set evs; |
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
442 |
S2TTP = Crypt (pubEK TTP) {|Agent S, Number AO, Key K, Agent R, hs|}; |
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
443 |
Notes R {|Agent TTP, Agent R, Key K, hs|} \<in> set evs; |
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
444 |
S\<noteq>Spy; evs \<in> certified_mail|] |
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
445 |
==> Gets S (Crypt (priSK TTP) S2TTP) \<in> set evs" |
13922 | 446 |
apply (erule rev_mp) |
447 |
apply (erule ssubst) |
|
13956 | 448 |
apply (erule rev_mp) |
13922 | 449 |
apply (erule certified_mail.induct, simp_all) |
450 |
txt{*Message 1*} |
|
451 |
apply (blast dest: Notes_imp_used) |
|
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
452 |
txt{*Message 3*} |
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
453 |
apply (blast dest: Notes_SSL_imp_used S2TTP_sender Key_unique S_fairness_bad_R) |
13922 | 454 |
done |
455 |
||
456 |
||
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
457 |
text{*If @{term R} sends message 2, and a delivery certificate exists, |
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
458 |
then @{term R} receives the necessary key. This result is also important |
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
459 |
to @{term S}, as it confirms the validity of the return receipt.*} |
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16417
diff
changeset
|
460 |
theorem RR_validity: |
13956 | 461 |
"[|Crypt (priSK TTP) S2TTP \<in> used evs; |
462 |
S2TTP = Crypt (pubEK TTP) |
|
13934 | 463 |
{|Agent S, Number AO, Key K, Agent R, |
464 |
Hash {|Number cleartext, Nonce q, r, em|}|}; |
|
13922 | 465 |
hr = Hash {|Number cleartext, Nonce q, r, em|}; |
466 |
R\<noteq>Spy; evs \<in> certified_mail|] |
|
467 |
==> Notes R {|Agent TTP, Agent R, Key K, hr|} \<in> set evs" |
|
468 |
apply (erule rev_mp) |
|
469 |
apply (erule ssubst) |
|
470 |
apply (erule ssubst) |
|
471 |
apply (erule certified_mail.induct, simp_all) |
|
13934 | 472 |
txt{*Fake*} |
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
473 |
apply (blast dest: Fake_parts_sing [THEN subsetD] |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
474 |
dest!: analz_subset_parts [THEN subsetD]) |
13934 | 475 |
txt{*Fake SSL*} |
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
476 |
apply (blast dest: Fake_parts_sing [THEN subsetD] |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
477 |
dest!: analz_subset_parts [THEN subsetD]) |
13922 | 478 |
txt{*Message 2*} |
13934 | 479 |
apply (drule CM2_S2TTP_parts_knows_Spy, assumption) |
480 |
apply (force dest: parts_cut) |
|
481 |
txt{*Message 3*} |
|
482 |
apply (frule_tac hr_form, assumption) |
|
483 |
apply (elim disjE exE, simp_all) |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
484 |
apply (blast dest: Fake_parts_sing [THEN subsetD] |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
13956
diff
changeset
|
485 |
dest!: analz_subset_parts [THEN subsetD]) |
13922 | 486 |
done |
487 |
||
488 |
end |