paulson@2111
|
1 |
(* Title: HOL/Auth/Yahalom2
|
paulson@2111
|
2 |
ID: $Id$
|
paulson@2111
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory
|
paulson@2111
|
4 |
Copyright 1996 University of Cambridge
|
paulson@2111
|
5 |
|
paulson@2111
|
6 |
Inductive relation "yahalom" for the Yahalom protocol, Variant 2.
|
paulson@2111
|
7 |
|
paulson@2111
|
8 |
This version trades encryption of NB for additional explicitness in YM3.
|
paulson@2111
|
9 |
|
paulson@2111
|
10 |
From page 259 of
|
paulson@2111
|
11 |
Burrows, Abadi and Needham. A Logic of Authentication.
|
paulson@2111
|
12 |
Proc. Royal Soc. 426 (1989)
|
paulson@2111
|
13 |
*)
|
paulson@2111
|
14 |
|
paulson@2111
|
15 |
open Yahalom2;
|
paulson@2111
|
16 |
|
paulson@2111
|
17 |
proof_timing:=true;
|
paulson@2111
|
18 |
HOL_quantifiers := false;
|
paulson@2111
|
19 |
|
paulson@2111
|
20 |
|
paulson@2111
|
21 |
(*Weak liveness: there are traces that reach the end*)
|
paulson@2111
|
22 |
|
paulson@2111
|
23 |
goal thy
|
paulson@2111
|
24 |
"!!A B. [| A ~= B; A ~= Server; B ~= Server |] \
|
paulson@2111
|
25 |
\ ==> EX X NB K. EX evs: yahalom lost. \
|
paulson@2111
|
26 |
\ Says A B {|X, Crypt (Nonce NB) K|} : set_of_list evs";
|
paulson@2111
|
27 |
by (REPEAT (resolve_tac [exI,bexI] 1));
|
paulson@2111
|
28 |
by (rtac (yahalom.Nil RS yahalom.YM1 RS yahalom.YM2 RS yahalom.YM3 RS yahalom.YM4) 2);
|
paulson@2111
|
29 |
by (ALLGOALS (simp_tac (!simpset setsolver safe_solver)));
|
paulson@2111
|
30 |
by (ALLGOALS Fast_tac);
|
paulson@2111
|
31 |
result();
|
paulson@2111
|
32 |
|
paulson@2111
|
33 |
|
paulson@2111
|
34 |
(**** Inductive proofs about yahalom ****)
|
paulson@2111
|
35 |
|
paulson@2111
|
36 |
(*Monotonicity*)
|
paulson@2111
|
37 |
goal thy "!!evs. lost' <= lost ==> yahalom lost' <= yahalom lost";
|
paulson@2111
|
38 |
by (rtac subsetI 1);
|
paulson@2111
|
39 |
by (etac yahalom.induct 1);
|
paulson@2111
|
40 |
by (REPEAT_FIRST
|
paulson@2111
|
41 |
(best_tac (!claset addIs (impOfSubs (sees_mono RS analz_mono RS synth_mono)
|
paulson@2111
|
42 |
:: yahalom.intrs))));
|
paulson@2111
|
43 |
qed "yahalom_mono";
|
paulson@2111
|
44 |
|
paulson@2111
|
45 |
|
paulson@2111
|
46 |
(*Nobody sends themselves messages*)
|
paulson@2111
|
47 |
goal thy "!!evs. evs: yahalom lost ==> ALL A X. Says A A X ~: set_of_list evs";
|
paulson@2111
|
48 |
by (etac yahalom.induct 1);
|
paulson@2111
|
49 |
by (Auto_tac());
|
paulson@2111
|
50 |
qed_spec_mp "not_Says_to_self";
|
paulson@2111
|
51 |
Addsimps [not_Says_to_self];
|
paulson@2111
|
52 |
AddSEs [not_Says_to_self RSN (2, rev_notE)];
|
paulson@2111
|
53 |
|
paulson@2111
|
54 |
|
paulson@2111
|
55 |
(** For reasoning about the encrypted portion of messages **)
|
paulson@2111
|
56 |
|
paulson@2111
|
57 |
(*Lets us treat YM4 using a similar argument as for the Fake case.*)
|
paulson@2111
|
58 |
goal thy "!!evs. Says S A {|NB, Crypt Y (shrK A), X|} : set_of_list evs ==> \
|
paulson@2111
|
59 |
\ X : analz (sees lost Spy evs)";
|
paulson@2111
|
60 |
by (fast_tac (!claset addSDs [Says_imp_sees_Spy RS analz.Inj]) 1);
|
paulson@2111
|
61 |
qed "YM4_analz_sees_Spy";
|
paulson@2111
|
62 |
|
paulson@2111
|
63 |
bind_thm ("YM4_parts_sees_Spy",
|
paulson@2111
|
64 |
YM4_analz_sees_Spy RS (impOfSubs analz_subset_parts));
|
paulson@2111
|
65 |
|
paulson@2155
|
66 |
(*Relates to both YM4 and Oops*)
|
paulson@2111
|
67 |
goal thy "!!evs. Says S A {|NB, Crypt {|B, K, NA|} (shrK A), X|} \
|
paulson@2111
|
68 |
\ : set_of_list evs ==> \
|
paulson@2111
|
69 |
\ K : parts (sees lost Spy evs)";
|
paulson@2111
|
70 |
by (fast_tac (!claset addSEs partsEs
|
paulson@2111
|
71 |
addSDs [Says_imp_sees_Spy RS parts.Inj]) 1);
|
paulson@2111
|
72 |
qed "YM4_Key_parts_sees_Spy";
|
paulson@2111
|
73 |
|
paulson@2111
|
74 |
(*We instantiate the variable to "lost". Leaving it as a Var makes proofs
|
paulson@2111
|
75 |
harder: the simplifier does less.*)
|
paulson@2111
|
76 |
val parts_Fake_tac =
|
paulson@2111
|
77 |
forw_inst_tac [("lost","lost")] YM4_parts_sees_Spy 6 THEN
|
paulson@2111
|
78 |
forw_inst_tac [("lost","lost")] YM4_Key_parts_sees_Spy 7;
|
paulson@2111
|
79 |
|
paulson@2111
|
80 |
(*For proving the easier theorems about X ~: parts (sees lost Spy evs) *)
|
paulson@2111
|
81 |
fun parts_induct_tac i = SELECT_GOAL
|
paulson@2111
|
82 |
(DETERM (etac yahalom.induct 1 THEN parts_Fake_tac THEN
|
paulson@2170
|
83 |
(*Fake message*)
|
paulson@2170
|
84 |
TRY (best_tac (!claset addDs [impOfSubs analz_subset_parts,
|
paulson@2170
|
85 |
impOfSubs Fake_parts_insert]
|
paulson@2111
|
86 |
addss (!simpset)) 2)) THEN
|
paulson@2111
|
87 |
(*Base case*)
|
paulson@2111
|
88 |
fast_tac (!claset addss (!simpset)) 1 THEN
|
paulson@2111
|
89 |
ALLGOALS Asm_simp_tac) i;
|
paulson@2111
|
90 |
|
paulson@2111
|
91 |
|
paulson@2111
|
92 |
(** Theorems of the form X ~: parts (sees lost Spy evs) imply that NOBODY
|
paulson@2111
|
93 |
sends messages containing X! **)
|
paulson@2111
|
94 |
|
paulson@2111
|
95 |
(*Spy never sees another agent's shared key! (unless it is leaked at start)*)
|
paulson@2111
|
96 |
goal thy
|
paulson@2111
|
97 |
"!!evs. [| evs : yahalom lost; A ~: lost |] \
|
paulson@2111
|
98 |
\ ==> Key (shrK A) ~: parts (sees lost Spy evs)";
|
paulson@2111
|
99 |
by (parts_induct_tac 1);
|
paulson@2111
|
100 |
by (Auto_tac());
|
paulson@2111
|
101 |
qed "Spy_not_see_shrK";
|
paulson@2111
|
102 |
|
paulson@2111
|
103 |
bind_thm ("Spy_not_analz_shrK",
|
paulson@2111
|
104 |
[analz_subset_parts, Spy_not_see_shrK] MRS contra_subsetD);
|
paulson@2111
|
105 |
|
paulson@2111
|
106 |
Addsimps [Spy_not_see_shrK, Spy_not_analz_shrK];
|
paulson@2111
|
107 |
|
paulson@2111
|
108 |
(*We go to some trouble to preserve R in the 3rd and 4th subgoals
|
paulson@2111
|
109 |
As usual fast_tac cannot be used because it uses the equalities too soon*)
|
paulson@2111
|
110 |
val major::prems =
|
paulson@2111
|
111 |
goal thy "[| Key (shrK A) : parts (sees lost Spy evs); \
|
paulson@2111
|
112 |
\ evs : yahalom lost; \
|
paulson@2111
|
113 |
\ A:lost ==> R \
|
paulson@2111
|
114 |
\ |] ==> R";
|
paulson@2111
|
115 |
by (rtac ccontr 1);
|
paulson@2111
|
116 |
by (rtac ([major, Spy_not_see_shrK] MRS rev_notE) 1);
|
paulson@2111
|
117 |
by (swap_res_tac prems 2);
|
paulson@2111
|
118 |
by (ALLGOALS (fast_tac (!claset addIs prems)));
|
paulson@2111
|
119 |
qed "Spy_see_shrK_E";
|
paulson@2111
|
120 |
|
paulson@2111
|
121 |
bind_thm ("Spy_analz_shrK_E",
|
paulson@2111
|
122 |
analz_subset_parts RS subsetD RS Spy_see_shrK_E);
|
paulson@2111
|
123 |
|
paulson@2111
|
124 |
AddSEs [Spy_see_shrK_E, Spy_analz_shrK_E];
|
paulson@2111
|
125 |
|
paulson@2111
|
126 |
|
paulson@2111
|
127 |
(*** Future keys can't be seen or used! ***)
|
paulson@2111
|
128 |
|
paulson@2160
|
129 |
(*Nobody can have SEEN keys that will be generated in the future. *)
|
paulson@2111
|
130 |
goal thy "!!evs. evs : yahalom lost ==> \
|
paulson@2111
|
131 |
\ length evs <= length evs' --> \
|
paulson@2160
|
132 |
\ Key (newK evs') ~: parts (sees lost Spy evs)";
|
paulson@2111
|
133 |
by (parts_induct_tac 1);
|
paulson@2111
|
134 |
by (REPEAT_FIRST (best_tac (!claset addDs [impOfSubs analz_subset_parts,
|
paulson@2111
|
135 |
impOfSubs parts_insert_subset_Un,
|
paulson@2111
|
136 |
Suc_leD]
|
paulson@2111
|
137 |
addss (!simpset))));
|
paulson@2160
|
138 |
qed_spec_mp "new_keys_not_seen";
|
paulson@2111
|
139 |
Addsimps [new_keys_not_seen];
|
paulson@2111
|
140 |
|
paulson@2160
|
141 |
(*Variant: old messages must contain old keys!*)
|
paulson@2111
|
142 |
goal thy
|
paulson@2111
|
143 |
"!!evs. [| Says A B X : set_of_list evs; \
|
paulson@2111
|
144 |
\ Key (newK evt) : parts {X}; \
|
paulson@2111
|
145 |
\ evs : yahalom lost \
|
paulson@2111
|
146 |
\ |] ==> length evt < length evs";
|
paulson@2111
|
147 |
by (rtac ccontr 1);
|
paulson@2111
|
148 |
by (dtac leI 1);
|
paulson@2111
|
149 |
by (fast_tac (!claset addSDs [new_keys_not_seen, Says_imp_sees_Spy]
|
paulson@2111
|
150 |
addIs [impOfSubs parts_mono]) 1);
|
paulson@2111
|
151 |
qed "Says_imp_old_keys";
|
paulson@2111
|
152 |
|
paulson@2111
|
153 |
|
paulson@2111
|
154 |
(*Nobody can have USED keys that will be generated in the future.
|
paulson@2111
|
155 |
...very like new_keys_not_seen*)
|
paulson@2111
|
156 |
goal thy "!!evs. evs : yahalom lost ==> \
|
paulson@2111
|
157 |
\ length evs <= length evs' --> \
|
paulson@2160
|
158 |
\ newK evs' ~: keysFor (parts (sees lost Spy evs))";
|
paulson@2111
|
159 |
by (parts_induct_tac 1);
|
paulson@2170
|
160 |
by (dtac YM4_Key_parts_sees_Spy 5);
|
paulson@2111
|
161 |
(*YM1, YM2 and YM3*)
|
paulson@2111
|
162 |
by (EVERY (map (fast_tac (!claset addDs [Suc_leD] addss (!simpset))) [4,3,2]));
|
paulson@2160
|
163 |
(*Fake and Oops: these messages send unknown (X) components*)
|
paulson@2160
|
164 |
by (EVERY
|
paulson@2160
|
165 |
(map (fast_tac
|
paulson@2170
|
166 |
(!claset addDs [impOfSubs analz_subset_parts,
|
paulson@2170
|
167 |
impOfSubs (analz_subset_parts RS keysFor_mono),
|
paulson@2170
|
168 |
impOfSubs (parts_insert_subset_Un RS keysFor_mono),
|
paulson@2170
|
169 |
Suc_leD]
|
paulson@2160
|
170 |
addss (!simpset))) [3,1]));
|
paulson@2160
|
171 |
(*YM4: if K was used then it had been seen, contradicting new_keys_not_seen*)
|
paulson@2160
|
172 |
by (fast_tac
|
paulson@2160
|
173 |
(!claset addSEs partsEs
|
paulson@2160
|
174 |
addSDs [Says_imp_sees_Spy RS parts.Inj]
|
paulson@2111
|
175 |
addEs [new_keys_not_seen RSN(2,rev_notE)]
|
paulson@2160
|
176 |
addDs [Suc_leD]) 1);
|
paulson@2160
|
177 |
qed_spec_mp "new_keys_not_used";
|
paulson@2111
|
178 |
|
paulson@2111
|
179 |
bind_thm ("new_keys_not_analzd",
|
paulson@2111
|
180 |
[analz_subset_parts RS keysFor_mono,
|
paulson@2111
|
181 |
new_keys_not_used] MRS contra_subsetD);
|
paulson@2111
|
182 |
|
paulson@2111
|
183 |
Addsimps [new_keys_not_used, new_keys_not_analzd];
|
paulson@2111
|
184 |
|
paulson@2111
|
185 |
|
paulson@2155
|
186 |
(*Describes the form of K when the Server sends this message. Useful for
|
paulson@2155
|
187 |
Oops as well as main secrecy property.*)
|
paulson@2111
|
188 |
goal thy
|
paulson@2155
|
189 |
"!!evs. [| Says Server A {|NB', Crypt {|Agent B, K, NA|} (shrK A), X|} \
|
paulson@2155
|
190 |
\ : set_of_list evs; \
|
paulson@2155
|
191 |
\ evs : yahalom lost |] \
|
paulson@2155
|
192 |
\ ==> (EX evt: yahalom lost. K = Key(newK evt)) & A ~= B";
|
paulson@2155
|
193 |
by (etac rev_mp 1);
|
paulson@2155
|
194 |
by (etac yahalom.induct 1);
|
paulson@2155
|
195 |
by (ALLGOALS (fast_tac (!claset addss (!simpset))));
|
paulson@2155
|
196 |
qed "Says_Server_message_form";
|
paulson@2111
|
197 |
|
paulson@2111
|
198 |
|
paulson@2111
|
199 |
(*For proofs involving analz. We again instantiate the variable to "lost".*)
|
paulson@2111
|
200 |
val analz_Fake_tac =
|
paulson@2111
|
201 |
dres_inst_tac [("lost","lost")] YM4_analz_sees_Spy 6 THEN
|
paulson@2155
|
202 |
forw_inst_tac [("lost","lost")] Says_Server_message_form 7 THEN
|
paulson@2155
|
203 |
assume_tac 7 THEN Full_simp_tac 7 THEN
|
paulson@2155
|
204 |
REPEAT ((eresolve_tac [bexE,conjE] ORELSE' hyp_subst_tac) 7);
|
paulson@2111
|
205 |
|
paulson@2111
|
206 |
|
paulson@2111
|
207 |
(****
|
paulson@2111
|
208 |
The following is to prove theorems of the form
|
paulson@2111
|
209 |
|
paulson@2111
|
210 |
Key K : analz (insert (Key (newK evt)) (sees lost Spy evs)) ==>
|
paulson@2111
|
211 |
Key K : analz (sees lost Spy evs)
|
paulson@2111
|
212 |
|
paulson@2111
|
213 |
A more general formula must be proved inductively.
|
paulson@2111
|
214 |
|
paulson@2111
|
215 |
****)
|
paulson@2111
|
216 |
|
paulson@2111
|
217 |
(** Session keys are not used to encrypt other session keys **)
|
paulson@2111
|
218 |
|
paulson@2111
|
219 |
goal thy
|
paulson@2111
|
220 |
"!!evs. evs : yahalom lost ==> \
|
paulson@2111
|
221 |
\ ALL K E. (Key K : analz (Key``(newK``E) Un (sees lost Spy evs))) = \
|
paulson@2111
|
222 |
\ (K : newK``E | Key K : analz (sees lost Spy evs))";
|
paulson@2111
|
223 |
by (etac yahalom.induct 1);
|
paulson@2111
|
224 |
by analz_Fake_tac;
|
paulson@2111
|
225 |
by (REPEAT_FIRST (resolve_tac [allI, analz_image_newK_lemma]));
|
paulson@2111
|
226 |
by (ALLGOALS (*Takes 26 secs*)
|
paulson@2111
|
227 |
(asm_simp_tac
|
paulson@2111
|
228 |
(!simpset addsimps ([insert_Key_singleton, insert_Key_image, pushKey_newK]
|
paulson@2111
|
229 |
@ pushes)
|
paulson@2111
|
230 |
setloop split_tac [expand_if])));
|
paulson@2155
|
231 |
(*YM4, Fake*)
|
paulson@2155
|
232 |
by (EVERY (map spy_analz_tac [4, 2]));
|
paulson@2155
|
233 |
(*Oops, YM3, Base*)
|
paulson@2111
|
234 |
by (REPEAT (fast_tac (!claset addIs [image_eqI] addss (!simpset)) 1));
|
paulson@2111
|
235 |
qed_spec_mp "analz_image_newK";
|
paulson@2111
|
236 |
|
paulson@2111
|
237 |
goal thy
|
paulson@2111
|
238 |
"!!evs. evs : yahalom lost ==> \
|
paulson@2111
|
239 |
\ Key K : analz (insert (Key (newK evt)) (sees lost Spy evs)) = \
|
paulson@2111
|
240 |
\ (K = newK evt | Key K : analz (sees lost Spy evs))";
|
paulson@2111
|
241 |
by (asm_simp_tac (HOL_ss addsimps [pushKey_newK, analz_image_newK,
|
paulson@2111
|
242 |
insert_Key_singleton]) 1);
|
paulson@2111
|
243 |
by (Fast_tac 1);
|
paulson@2111
|
244 |
qed "analz_insert_Key_newK";
|
paulson@2111
|
245 |
|
paulson@2111
|
246 |
|
paulson@2111
|
247 |
(*** The Key K uniquely identifies the Server's message. **)
|
paulson@2111
|
248 |
|
paulson@2111
|
249 |
goal thy
|
paulson@2111
|
250 |
"!!evs. evs : yahalom lost ==> \
|
paulson@2155
|
251 |
\ EX A' B' NA' NB' X'. ALL A B NA NB X. \
|
paulson@2111
|
252 |
\ Says Server A \
|
paulson@2155
|
253 |
\ {|NB, Crypt {|Agent B, Key K, NA|} (shrK A), X|} \
|
paulson@2155
|
254 |
\ : set_of_list evs --> A=A' & B=B' & NA=NA' & NB=NB' & X=X'";
|
paulson@2111
|
255 |
by (etac yahalom.induct 1);
|
paulson@2111
|
256 |
by (ALLGOALS (asm_simp_tac (!simpset addsimps [all_conj_distrib])));
|
paulson@2111
|
257 |
by (Step_tac 1);
|
paulson@2111
|
258 |
(*Remaining case: YM3*)
|
paulson@2111
|
259 |
by (expand_case_tac "K = ?y" 1);
|
paulson@2111
|
260 |
by (REPEAT (ares_tac [refl,exI,impI,conjI] 2));
|
paulson@2111
|
261 |
(*...we assume X is a very new message, and handle this case by contradiction*)
|
paulson@2111
|
262 |
by (fast_tac (!claset addEs [Says_imp_old_keys RS less_irrefl]
|
paulson@2111
|
263 |
delrules [conjI] (*prevent split-up into 4 subgoals*)
|
paulson@2111
|
264 |
addss (!simpset addsimps [parts_insertI])) 1);
|
paulson@2111
|
265 |
val lemma = result();
|
paulson@2111
|
266 |
|
paulson@2111
|
267 |
goal thy
|
paulson@2111
|
268 |
"!!evs. [| Says Server A \
|
paulson@2155
|
269 |
\ {|NB, Crypt {|Agent B, Key K, NA|} (shrK A), X|} \
|
paulson@2111
|
270 |
\ : set_of_list evs; \
|
paulson@2111
|
271 |
\ Says Server A' \
|
paulson@2155
|
272 |
\ {|NB', Crypt {|Agent B', Key K, NA'|} (shrK A'), X'|} \
|
paulson@2111
|
273 |
\ : set_of_list evs; \
|
paulson@2111
|
274 |
\ evs : yahalom lost |] \
|
paulson@2111
|
275 |
\ ==> A=A' & B=B' & NA=NA' & NB=NB'";
|
paulson@2111
|
276 |
by (dtac lemma 1);
|
paulson@2111
|
277 |
by (REPEAT (etac exE 1));
|
paulson@2111
|
278 |
(*Duplicate the assumption*)
|
paulson@2111
|
279 |
by (forw_inst_tac [("psi", "ALL C.?P(C)")] asm_rl 1);
|
paulson@2111
|
280 |
by (fast_tac (!claset addSDs [spec]) 1);
|
paulson@2111
|
281 |
qed "unique_session_keys";
|
paulson@2111
|
282 |
|
paulson@2111
|
283 |
|
paulson@2111
|
284 |
(** Crucial secrecy property: Spy does not see the keys sent in msg YM3 **)
|
paulson@2111
|
285 |
|
paulson@2111
|
286 |
goal thy
|
paulson@2155
|
287 |
"!!evs. [| A ~: lost; B ~: lost; A ~= B; \
|
paulson@2155
|
288 |
\ evs : yahalom lost |] \
|
paulson@2111
|
289 |
\ ==> Says Server A \
|
paulson@2111
|
290 |
\ {|NB, Crypt {|Agent B, Key K, NA|} (shrK A), \
|
paulson@2155
|
291 |
\ Crypt {|NB, Key K, Agent A|} (shrK B)|} \
|
paulson@2111
|
292 |
\ : set_of_list evs --> \
|
paulson@2155
|
293 |
\ Says A Spy {|NA, NB, Key K|} ~: set_of_list evs --> \
|
paulson@2111
|
294 |
\ Key K ~: analz (sees lost Spy evs)";
|
paulson@2111
|
295 |
by (etac yahalom.induct 1);
|
paulson@2111
|
296 |
by analz_Fake_tac;
|
paulson@2111
|
297 |
by (ALLGOALS
|
paulson@2111
|
298 |
(asm_simp_tac
|
paulson@2111
|
299 |
(!simpset addsimps ([analz_subset_parts RS contra_subsetD,
|
paulson@2111
|
300 |
analz_insert_Key_newK] @ pushes)
|
paulson@2111
|
301 |
setloop split_tac [expand_if])));
|
paulson@2111
|
302 |
(*YM3*)
|
paulson@2111
|
303 |
by (fast_tac (!claset addIs [parts_insertI]
|
paulson@2111
|
304 |
addEs [Says_imp_old_keys RS less_irrefl]
|
paulson@2111
|
305 |
addss (!simpset)) 2);
|
paulson@2155
|
306 |
(*OR4, Fake*)
|
paulson@2111
|
307 |
by (REPEAT_FIRST (resolve_tac [conjI, impI] ORELSE' spy_analz_tac));
|
paulson@2155
|
308 |
(*Oops*)
|
paulson@2111
|
309 |
by (fast_tac (!claset delrules [disjE]
|
paulson@2170
|
310 |
addDs [unique_session_keys]
|
paulson@2170
|
311 |
addss (!simpset)) 1);
|
paulson@2111
|
312 |
val lemma = result() RS mp RS mp RSN(2,rev_notE);
|
paulson@2111
|
313 |
|
paulson@2111
|
314 |
|
paulson@2111
|
315 |
(*Final version: Server's message in the most abstract form*)
|
paulson@2111
|
316 |
goal thy
|
paulson@2111
|
317 |
"!!evs. [| Says Server A \
|
paulson@2111
|
318 |
\ {|NB, Crypt {|Agent B, K, NA|} (shrK A), \
|
paulson@2155
|
319 |
\ Crypt {|NB, K, Agent A|} (shrK B)|} \
|
paulson@2111
|
320 |
\ : set_of_list evs; \
|
paulson@2155
|
321 |
\ Says A Spy {|NA, NB, K|} ~: set_of_list evs; \
|
paulson@2155
|
322 |
\ A ~: lost; B ~: lost; evs : yahalom lost |] \
|
paulson@2155
|
323 |
\ ==> K ~: analz (sees lost Spy evs)";
|
paulson@2111
|
324 |
by (forward_tac [Says_Server_message_form] 1 THEN assume_tac 1);
|
paulson@2111
|
325 |
by (fast_tac (!claset addSEs [lemma]) 1);
|
paulson@2111
|
326 |
qed "Spy_not_see_encrypted_key";
|
paulson@2111
|
327 |
|
paulson@2111
|
328 |
|
paulson@2111
|
329 |
goal thy
|
paulson@2155
|
330 |
"!!evs. [| C ~: {A,B,Server}; \
|
paulson@2111
|
331 |
\ Says Server A \
|
paulson@2111
|
332 |
\ {|NB, Crypt {|Agent B, K, NA|} (shrK A), \
|
paulson@2155
|
333 |
\ Crypt {|NB, K, Agent A|} (shrK B)|} \
|
paulson@2111
|
334 |
\ : set_of_list evs; \
|
paulson@2155
|
335 |
\ Says A Spy {|NA, NB, K|} ~: set_of_list evs; \
|
paulson@2155
|
336 |
\ A ~: lost; B ~: lost; evs : yahalom lost |] \
|
paulson@2155
|
337 |
\ ==> K ~: analz (sees lost C evs)";
|
paulson@2111
|
338 |
by (rtac (subset_insertI RS sees_mono RS analz_mono RS contra_subsetD) 1);
|
paulson@2111
|
339 |
by (rtac (sees_lost_agent_subset_sees_Spy RS analz_mono RS contra_subsetD) 1);
|
paulson@2111
|
340 |
by (FIRSTGOAL (rtac Spy_not_see_encrypted_key));
|
paulson@2111
|
341 |
by (REPEAT_FIRST (fast_tac (!claset addIs [yahalom_mono RS subsetD])));
|
paulson@2111
|
342 |
qed "Agent_not_see_encrypted_key";
|
paulson@2111
|
343 |
|
paulson@2111
|
344 |
|
paulson@2155
|
345 |
(*** Security Guarantees for A and B ***)
|
paulson@2155
|
346 |
|
paulson@2155
|
347 |
(*If the encrypted message appears then it originated with the Server.*)
|
paulson@2155
|
348 |
goal thy
|
paulson@2155
|
349 |
"!!evs. [| Crypt {|Agent B, Key K, NA|} (shrK A) \
|
paulson@2155
|
350 |
\ : parts (sees lost Spy evs); \
|
paulson@2155
|
351 |
\ A ~: lost; evs : yahalom lost |] \
|
paulson@2155
|
352 |
\ ==> EX NB. Says Server A \
|
paulson@2155
|
353 |
\ {|NB, Crypt {|Agent B, Key K, NA|} (shrK A), \
|
paulson@2155
|
354 |
\ Crypt {|NB, Key K, Agent A|} (shrK B)|} \
|
paulson@2155
|
355 |
\ : set_of_list evs";
|
paulson@2155
|
356 |
by (etac rev_mp 1);
|
paulson@2155
|
357 |
by (parts_induct_tac 1);
|
paulson@2155
|
358 |
(*The nested conjunctions are entirely useless*)
|
paulson@2155
|
359 |
by (REPEAT_FIRST (rtac conjI ORELSE' fast_tac (!claset delrules [conjI])));
|
paulson@2155
|
360 |
qed "A_trust_YM3";
|
paulson@2155
|
361 |
|
paulson@2111
|
362 |
|
paulson@2111
|
363 |
(*B knows, by the first part of A's message, that the Server distributed
|
paulson@2155
|
364 |
the key for A and B. *)
|
paulson@2111
|
365 |
goal thy
|
paulson@2155
|
366 |
"!!evs. [| Crypt {|Nonce NB, Key K, Agent A|} (shrK B) \
|
paulson@2155
|
367 |
\ : parts (sees lost Spy evs); \
|
paulson@2155
|
368 |
\ B ~: lost; evs : yahalom lost |] \
|
paulson@2111
|
369 |
\ ==> EX NA. Says Server A \
|
paulson@2155
|
370 |
\ {|Nonce NB, \
|
paulson@2155
|
371 |
\ Crypt {|Agent B, Key K, Nonce NA|} (shrK A), \
|
paulson@2155
|
372 |
\ Crypt {|Nonce NB, Key K, Agent A|} (shrK B)|} \
|
paulson@2111
|
373 |
\ : set_of_list evs";
|
paulson@2111
|
374 |
by (etac rev_mp 1);
|
paulson@2111
|
375 |
by (parts_induct_tac 1);
|
paulson@2111
|
376 |
(*YM3*)
|
paulson@2111
|
377 |
by (Fast_tac 1);
|
paulson@2111
|
378 |
qed "B_trusts_YM4_shrK";
|
paulson@2111
|
379 |
|
paulson@2111
|
380 |
(*With this variant we don't bother to use the 2nd part of YM4 at all, since
|
paulson@2111
|
381 |
Nonce NB is available in the first part. However the 2nd part does assure B
|
paulson@2111
|
382 |
of A's existence.*)
|
paulson@2111
|
383 |
|
paulson@2155
|
384 |
(*What can B deduce from receipt of YM4? Stronger and simpler than Yahalom
|
paulson@2155
|
385 |
because we do not have to show that NB is secret. *)
|
paulson@2111
|
386 |
goal thy
|
paulson@2155
|
387 |
"!!evs. [| Says A' B {|Crypt {|Nonce NB, Key K, Agent A|} (shrK B), \
|
paulson@2111
|
388 |
\ Crypt (Nonce NB) K|} : set_of_list evs; \
|
paulson@2111
|
389 |
\ A ~: lost; B ~: lost; evs : yahalom lost |] \
|
paulson@2111
|
390 |
\ ==> EX NA. Says Server A \
|
paulson@2155
|
391 |
\ {|Nonce NB, \
|
paulson@2155
|
392 |
\ Crypt {|Agent B, Key K, Nonce NA|} (shrK A), \
|
paulson@2155
|
393 |
\ Crypt {|Nonce NB, Key K, Agent A|} (shrK B)|} \
|
paulson@2111
|
394 |
\ : set_of_list evs";
|
paulson@2170
|
395 |
by (etac (Says_imp_sees_Spy RS parts.Inj RS MPair_parts) 1);
|
paulson@2111
|
396 |
by (fast_tac (!claset addSDs [B_trusts_YM4_shrK]) 1);
|
paulson@2111
|
397 |
qed "B_trust_YM4";
|