author | paulson |
Wed, 04 Jan 2006 16:13:53 +0100 | |
changeset 18570 | ffce25f9aa7f |
parent 17990 | 86d462f305e0 |
child 18749 | 31c2af8b0c60 |
permissions | -rw-r--r-- |
2318 | 1 |
(* Title: HOL/Auth/Public |
2 |
ID: $Id$ |
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
4 |
Copyright 1996 University of Cambridge |
|
5 |
||
3512
9dcb4daa15e8
Moving common declarations and proofs from theories "Shared"
paulson
parents:
3478
diff
changeset
|
6 |
Theory of Public Keys (common to all public-key protocols) |
2318 | 7 |
|
3512
9dcb4daa15e8
Moving common declarations and proofs from theories "Shared"
paulson
parents:
3478
diff
changeset
|
8 |
Private and public keys; initial states of agents |
2318 | 9 |
*) |
10 |
||
16417 | 11 |
theory Public imports Event begin |
13922 | 12 |
|
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
13 |
lemma invKey_K: "K \<in> symKeys ==> invKey K = K" |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
14 |
by (simp add: symKeys_def) |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
15 |
|
13922 | 16 |
subsection{*Asymmetric Keys*} |
2318 | 17 |
|
18 |
consts |
|
13922 | 19 |
(*the bool is TRUE if a signing key*) |
20 |
publicKey :: "[bool,agent] => key" |
|
2318 | 21 |
|
22 |
syntax |
|
13922 | 23 |
pubEK :: "agent => key" |
24 |
pubSK :: "agent => key" |
|
25 |
||
26 |
privateKey :: "[bool,agent] => key" |
|
27 |
priEK :: "agent => key" |
|
28 |
priSK :: "agent => key" |
|
29 |
||
30 |
translations |
|
31 |
"pubEK" == "publicKey False" |
|
32 |
"pubSK" == "publicKey True" |
|
33 |
||
34 |
(*BEWARE!! priEK, priSK DON'T WORK with inj, range, image, etc.*) |
|
35 |
"privateKey b A" == "invKey (publicKey b A)" |
|
36 |
"priEK A" == "privateKey False A" |
|
37 |
"priSK A" == "privateKey True A" |
|
38 |
||
39 |
||
40 |
text{*These translations give backward compatibility. They represent the |
|
41 |
simple situation where the signature and encryption keys are the same.*} |
|
42 |
syntax |
|
43 |
pubK :: "agent => key" |
|
44 |
priK :: "agent => key" |
|
45 |
||
46 |
translations |
|
47 |
"pubK A" == "pubEK A" |
|
48 |
"priK A" == "invKey (pubEK A)" |
|
49 |
||
50 |
||
14126
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
51 |
text{*By freeness of agents, no two agents have the same key. Since |
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
52 |
@{term "True\<noteq>False"}, no agent has identical signing and encryption keys*} |
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
53 |
specification (publicKey) |
13922 | 54 |
injective_publicKey: |
55 |
"publicKey b A = publicKey c A' ==> b=c & A=A'" |
|
14261 | 56 |
apply (rule exI [of _ "%b A. 2 * agent_case 0 (\<lambda>n. n + 2) 1 A + (if b then 1 else 0)"]) |
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
57 |
apply (auto simp add: inj_on_def split: agent.split, presburger+) |
14126
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
58 |
done |
13922 | 59 |
|
14126
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
60 |
|
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
61 |
axioms |
13922 | 62 |
(*No private key equals any public key (essential to ensure that private |
63 |
keys are private!) *) |
|
64 |
privateKey_neq_publicKey [iff]: "privateKey b A \<noteq> publicKey c A'" |
|
65 |
||
13926 | 66 |
declare privateKey_neq_publicKey [THEN not_sym, iff] |
13922 | 67 |
|
68 |
||
13926 | 69 |
subsection{*Basic properties of @{term pubK} and @{term priK}*} |
13922 | 70 |
|
18570 | 71 |
lemma publicKey_inject [iff]: "(publicKey b A = publicKey c A') = (b=c & A=A')" |
13922 | 72 |
by (blast dest!: injective_publicKey) |
73 |
||
74 |
lemma not_symKeys_pubK [iff]: "publicKey b A \<notin> symKeys" |
|
13926 | 75 |
by (simp add: symKeys_def) |
13922 | 76 |
|
77 |
lemma not_symKeys_priK [iff]: "privateKey b A \<notin> symKeys" |
|
13926 | 78 |
by (simp add: symKeys_def) |
13922 | 79 |
|
80 |
lemma symKey_neq_priEK: "K \<in> symKeys ==> K \<noteq> priEK A" |
|
81 |
by auto |
|
82 |
||
83 |
lemma symKeys_neq_imp_neq: "(K \<in> symKeys) \<noteq> (K' \<in> symKeys) ==> K \<noteq> K'" |
|
13926 | 84 |
by blast |
13922 | 85 |
|
86 |
lemma symKeys_invKey_iff [iff]: "(invKey K \<in> symKeys) = (K \<in> symKeys)" |
|
13926 | 87 |
by (unfold symKeys_def, auto) |
2318 | 88 |
|
13922 | 89 |
lemma analz_symKeys_Decrypt: |
90 |
"[| Crypt K X \<in> analz H; K \<in> symKeys; Key K \<in> analz H |] |
|
91 |
==> X \<in> analz H" |
|
92 |
by (auto simp add: symKeys_def) |
|
93 |
||
94 |
||
95 |
||
96 |
subsection{*"Image" equations that hold for injective functions*} |
|
97 |
||
98 |
lemma invKey_image_eq [simp]: "(invKey x \<in> invKey`A) = (x \<in> A)" |
|
13926 | 99 |
by auto |
13922 | 100 |
|
101 |
(*holds because invKey is injective*) |
|
102 |
lemma publicKey_image_eq [simp]: |
|
103 |
"(publicKey b x \<in> publicKey c ` AA) = (b=c & x \<in> AA)" |
|
104 |
by auto |
|
105 |
||
106 |
lemma privateKey_notin_image_publicKey [simp]: "privateKey b x \<notin> publicKey c ` AA" |
|
13926 | 107 |
by auto |
13922 | 108 |
|
109 |
lemma privateKey_image_eq [simp]: |
|
110 |
"(privateKey b A \<in> invKey ` publicKey c ` AS) = (b=c & A\<in>AS)" |
|
111 |
by auto |
|
112 |
||
113 |
lemma publicKey_notin_image_privateKey [simp]: "publicKey b A \<notin> invKey ` publicKey c ` AS" |
|
13926 | 114 |
by auto |
13922 | 115 |
|
116 |
||
117 |
subsection{*Symmetric Keys*} |
|
118 |
||
119 |
text{*For some protocols, it is convenient to equip agents with symmetric as |
|
120 |
well as asymmetric keys. The theory @{text Shared} assumes that all keys |
|
121 |
are symmetric.*} |
|
122 |
||
123 |
consts |
|
124 |
shrK :: "agent => key" --{*long-term shared keys*} |
|
125 |
||
14126
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
126 |
specification (shrK) |
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
127 |
inj_shrK: "inj shrK" |
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
128 |
--{*No two agents have the same long-term key*} |
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
129 |
apply (rule exI [of _ "agent_case 0 (\<lambda>n. n + 2) 1"]) |
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
130 |
apply (simp add: inj_on_def split: agent.split) |
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
131 |
done |
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
132 |
|
13922 | 133 |
axioms |
134 |
sym_shrK [iff]: "shrK X \<in> symKeys" --{*All shared keys are symmetric*} |
|
135 |
||
18570 | 136 |
text{*Injectiveness: Agents' long-term keys are distinct.*} |
137 |
lemmas shrK_injective = inj_shrK [THEN inj_eq] |
|
138 |
declare shrK_injective [iff] |
|
13922 | 139 |
|
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
140 |
lemma invKey_shrK [simp]: "invKey (shrK A) = shrK A" |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
141 |
by (simp add: invKey_K) |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
142 |
|
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
143 |
lemma analz_shrK_Decrypt: |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
144 |
"[| Crypt (shrK A) X \<in> analz H; Key(shrK A) \<in> analz H |] ==> X \<in> analz H" |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
145 |
by auto |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
146 |
|
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
147 |
lemma analz_Decrypt': |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
148 |
"[| Crypt K X \<in> analz H; K \<in> symKeys; Key K \<in> analz H |] ==> X \<in> analz H" |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
149 |
by (auto simp add: invKey_K) |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
150 |
|
13922 | 151 |
lemma priK_neq_shrK [iff]: "shrK A \<noteq> privateKey b C" |
13926 | 152 |
by (simp add: symKeys_neq_imp_neq) |
13922 | 153 |
|
154 |
declare priK_neq_shrK [THEN not_sym, simp] |
|
155 |
||
156 |
lemma pubK_neq_shrK [iff]: "shrK A \<noteq> publicKey b C" |
|
13926 | 157 |
by (simp add: symKeys_neq_imp_neq) |
13922 | 158 |
|
159 |
declare pubK_neq_shrK [THEN not_sym, simp] |
|
160 |
||
161 |
lemma priEK_noteq_shrK [simp]: "priEK A \<noteq> shrK B" |
|
162 |
by auto |
|
163 |
||
164 |
lemma publicKey_notin_image_shrK [simp]: "publicKey b x \<notin> shrK ` AA" |
|
165 |
by auto |
|
166 |
||
167 |
lemma privateKey_notin_image_shrK [simp]: "privateKey b x \<notin> shrK ` AA" |
|
168 |
by auto |
|
169 |
||
170 |
lemma shrK_notin_image_publicKey [simp]: "shrK x \<notin> publicKey b ` AA" |
|
171 |
by auto |
|
172 |
||
173 |
lemma shrK_notin_image_privateKey [simp]: "shrK x \<notin> invKey ` publicKey b ` AA" |
|
174 |
by auto |
|
175 |
||
176 |
lemma shrK_image_eq [simp]: "(shrK x \<in> shrK ` AA) = (x \<in> AA)" |
|
177 |
by auto |
|
178 |
||
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
179 |
text{*For some reason, moving this up can make some proofs loop!*} |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
180 |
declare invKey_K [simp] |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
181 |
|
13922 | 182 |
|
183 |
subsection{*Initial States of Agents*} |
|
184 |
||
185 |
text{*Note: for all practical purposes, all that matters is the initial |
|
186 |
knowledge of the Spy. All other agents are automata, merely following the |
|
187 |
protocol.*} |
|
2318 | 188 |
|
5183 | 189 |
primrec |
2318 | 190 |
(*Agents know their private key and all public keys*) |
13922 | 191 |
initState_Server: |
192 |
"initState Server = |
|
193 |
{Key (priEK Server), Key (priSK Server)} \<union> |
|
194 |
(Key ` range pubEK) \<union> (Key ` range pubSK) \<union> (Key ` range shrK)" |
|
195 |
||
196 |
initState_Friend: |
|
197 |
"initState (Friend i) = |
|
198 |
{Key (priEK(Friend i)), Key (priSK(Friend i)), Key (shrK(Friend i))} \<union> |
|
199 |
(Key ` range pubEK) \<union> (Key ` range pubSK)" |
|
200 |
||
201 |
initState_Spy: |
|
202 |
"initState Spy = |
|
203 |
(Key ` invKey ` pubEK ` bad) \<union> (Key ` invKey ` pubSK ` bad) \<union> |
|
204 |
(Key ` shrK ` bad) \<union> |
|
205 |
(Key ` range pubEK) \<union> (Key ` range pubSK)" |
|
206 |
||
207 |
||
208 |
text{*These lemmas allow reasoning about @{term "used evs"} rather than |
|
13935 | 209 |
@{term "knows Spy evs"}, which is useful when there are private Notes. |
210 |
Because they depend upon the definition of @{term initState}, they cannot |
|
211 |
be moved up.*} |
|
13922 | 212 |
|
213 |
lemma used_parts_subset_parts [rule_format]: |
|
214 |
"\<forall>X \<in> used evs. parts {X} \<subseteq> used evs" |
|
215 |
apply (induct evs) |
|
216 |
prefer 2 |
|
217 |
apply (simp add: used_Cons) |
|
218 |
apply (rule ballI) |
|
13935 | 219 |
apply (case_tac a, auto) |
220 |
apply (auto dest!: parts_cut) |
|
13922 | 221 |
txt{*Base case*} |
13935 | 222 |
apply (simp add: used_Nil) |
13922 | 223 |
done |
224 |
||
225 |
lemma MPair_used_D: "{|X,Y|} \<in> used H ==> X \<in> used H & Y \<in> used H" |
|
226 |
by (drule used_parts_subset_parts, simp, blast) |
|
227 |
||
17990 | 228 |
text{*There was a similar theorem in Event.thy, so perhaps this one can |
229 |
be moved up if proved directly by induction.*} |
|
13922 | 230 |
lemma MPair_used [elim!]: |
231 |
"[| {|X,Y|} \<in> used H; |
|
232 |
[| X \<in> used H; Y \<in> used H |] ==> P |] |
|
233 |
==> P" |
|
234 |
by (blast dest: MPair_used_D) |
|
235 |
||
236 |
||
237 |
text{*Rewrites should not refer to @{term "initState(Friend i)"} because |
|
238 |
that expression is not in normal form.*} |
|
239 |
||
240 |
lemma keysFor_parts_initState [simp]: "keysFor (parts (initState C)) = {}" |
|
241 |
apply (unfold keysFor_def) |
|
242 |
apply (induct_tac "C") |
|
243 |
apply (auto intro: range_eqI) |
|
244 |
done |
|
245 |
||
246 |
lemma Crypt_notin_initState: "Crypt K X \<notin> parts (initState B)" |
|
247 |
by (induct B, auto) |
|
248 |
||
13935 | 249 |
lemma Crypt_notin_used_empty [simp]: "Crypt K X \<notin> used []" |
250 |
by (simp add: Crypt_notin_initState used_Nil) |
|
251 |
||
13922 | 252 |
(*** Basic properties of shrK ***) |
253 |
||
254 |
(*Agents see their own shared keys!*) |
|
255 |
lemma shrK_in_initState [iff]: "Key (shrK A) \<in> initState A" |
|
13926 | 256 |
by (induct_tac "A", auto) |
13922 | 257 |
|
258 |
lemma shrK_in_knows [iff]: "Key (shrK A) \<in> knows A evs" |
|
259 |
by (simp add: initState_subset_knows [THEN subsetD]) |
|
260 |
||
261 |
lemma shrK_in_used [iff]: "Key (shrK A) \<in> used evs" |
|
13926 | 262 |
by (rule initState_into_used, blast) |
13922 | 263 |
|
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
264 |
|
13922 | 265 |
(** Fresh keys never clash with long-term shared keys **) |
266 |
||
267 |
(*Used in parts_induct_tac and analz_Fake_tac to distinguish session keys |
|
268 |
from long-term shared keys*) |
|
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
269 |
lemma Key_not_used [simp]: "Key K \<notin> used evs ==> K \<notin> range shrK" |
13926 | 270 |
by blast |
13922 | 271 |
|
272 |
lemma shrK_neq: "Key K \<notin> used evs ==> shrK B \<noteq> K" |
|
13926 | 273 |
by blast |
13922 | 274 |
|
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
275 |
declare shrK_neq [THEN not_sym, simp] |
2318 | 276 |
|
277 |
||
13922 | 278 |
subsection{*Function @{term spies} *} |
279 |
||
280 |
text{*Agents see their own private keys!*} |
|
281 |
lemma priK_in_initState [iff]: "Key (privateKey b A) \<in> initState A" |
|
13926 | 282 |
by (induct_tac "A", auto) |
13922 | 283 |
|
284 |
text{*Agents see all public keys!*} |
|
285 |
lemma publicKey_in_initState [iff]: "Key (publicKey b A) \<in> initState B" |
|
13926 | 286 |
by (case_tac "B", auto) |
13922 | 287 |
|
288 |
text{*All public keys are visible*} |
|
289 |
lemma spies_pubK [iff]: "Key (publicKey b A) \<in> spies evs" |
|
290 |
apply (induct_tac "evs") |
|
291 |
apply (simp_all add: imageI knows_Cons split add: event.split) |
|
292 |
done |
|
293 |
||
294 |
declare spies_pubK [THEN analz.Inj, iff] |
|
295 |
||
296 |
text{*Spy sees private keys of bad agents!*} |
|
297 |
lemma Spy_spies_bad_privateKey [intro!]: |
|
298 |
"A \<in> bad ==> Key (privateKey b A) \<in> spies evs" |
|
299 |
apply (induct_tac "evs") |
|
300 |
apply (simp_all add: imageI knows_Cons split add: event.split) |
|
301 |
done |
|
302 |
||
303 |
text{*Spy sees long-term shared keys of bad agents!*} |
|
304 |
lemma Spy_spies_bad_shrK [intro!]: |
|
305 |
"A \<in> bad ==> Key (shrK A) \<in> spies evs" |
|
306 |
apply (induct_tac "evs") |
|
307 |
apply (simp_all add: imageI knows_Cons split add: event.split) |
|
308 |
done |
|
309 |
||
310 |
lemma publicKey_into_used [iff] :"Key (publicKey b A) \<in> used evs" |
|
311 |
apply (rule initState_into_used) |
|
312 |
apply (rule publicKey_in_initState [THEN parts.Inj]) |
|
313 |
done |
|
314 |
||
315 |
lemma privateKey_into_used [iff]: "Key (privateKey b A) \<in> used evs" |
|
316 |
apply(rule initState_into_used) |
|
317 |
apply(rule priK_in_initState [THEN parts.Inj]) |
|
318 |
done |
|
319 |
||
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
320 |
(*For case analysis on whether or not an agent is compromised*) |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
321 |
lemma Crypt_Spy_analz_bad: |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
322 |
"[| Crypt (shrK A) X \<in> analz (knows Spy evs); A \<in> bad |] |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
323 |
==> X \<in> analz (knows Spy evs)" |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
324 |
by force |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
325 |
|
13922 | 326 |
|
327 |
subsection{*Fresh Nonces*} |
|
328 |
||
329 |
lemma Nonce_notin_initState [iff]: "Nonce N \<notin> parts (initState B)" |
|
13926 | 330 |
by (induct_tac "B", auto) |
13922 | 331 |
|
332 |
lemma Nonce_notin_used_empty [simp]: "Nonce N \<notin> used []" |
|
13926 | 333 |
by (simp add: used_Nil) |
13922 | 334 |
|
11104 | 335 |
|
13922 | 336 |
subsection{*Supply fresh nonces for possibility theorems*} |
337 |
||
338 |
text{*In any trace, there is an upper bound N on the greatest nonce in use*} |
|
339 |
lemma Nonce_supply_lemma: "EX N. ALL n. N<=n --> Nonce n \<notin> used evs" |
|
340 |
apply (induct_tac "evs") |
|
13926 | 341 |
apply (rule_tac x = 0 in exI) |
13922 | 342 |
apply (simp_all (no_asm_simp) add: used_Cons split add: event.split) |
343 |
apply safe |
|
344 |
apply (rule msg_Nonce_supply [THEN exE], blast elim!: add_leE)+ |
|
345 |
done |
|
346 |
||
347 |
lemma Nonce_supply1: "EX N. Nonce N \<notin> used evs" |
|
13926 | 348 |
by (rule Nonce_supply_lemma [THEN exE], blast) |
13922 | 349 |
|
350 |
lemma Nonce_supply: "Nonce (@ N. Nonce N \<notin> used evs) \<notin> used evs" |
|
351 |
apply (rule Nonce_supply_lemma [THEN exE]) |
|
13926 | 352 |
apply (rule someI, fast) |
13922 | 353 |
done |
354 |
||
13956 | 355 |
subsection{*Specialized Rewriting for Theorems About @{term analz} and Image*} |
13922 | 356 |
|
357 |
lemma insert_Key_singleton: "insert (Key K) H = Key ` {K} Un H" |
|
13926 | 358 |
by blast |
11104 | 359 |
|
13922 | 360 |
lemma insert_Key_image: "insert (Key K) (Key`KK \<union> C) = Key ` (insert K KK) \<union> C" |
13926 | 361 |
by blast |
13922 | 362 |
|
363 |
ML |
|
364 |
{* |
|
365 |
val Key_not_used = thm "Key_not_used"; |
|
366 |
val insert_Key_singleton = thm "insert_Key_singleton"; |
|
367 |
val insert_Key_image = thm "insert_Key_image"; |
|
368 |
*} |
|
369 |
||
370 |
||
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
371 |
lemma Crypt_imp_keysFor :"[|Crypt K X \<in> H; K \<in> symKeys|] ==> K \<in> keysFor H" |
13926 | 372 |
by (drule Crypt_imp_invKey_keysFor, simp) |
13922 | 373 |
|
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
374 |
text{*Lemma for the trivial direction of the if-and-only-if of the |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
375 |
Session Key Compromise Theorem*} |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
376 |
lemma analz_image_freshK_lemma: |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
377 |
"(Key K \<in> analz (Key`nE \<union> H)) --> (K \<in> nE | Key K \<in> analz H) ==> |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
378 |
(Key K \<in> analz (Key`nE \<union> H)) = (K \<in> nE | Key K \<in> analz H)" |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
379 |
by (blast intro: analz_mono [THEN [2] rev_subsetD]) |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
380 |
|
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
381 |
lemmas analz_image_freshK_simps = |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
382 |
simp_thms mem_simps --{*these two allow its use with @{text "only:"}*} |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
383 |
disj_comms |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
384 |
image_insert [THEN sym] image_Un [THEN sym] empty_subsetI insert_subset |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
385 |
analz_insert_eq Un_upper2 [THEN analz_mono, THEN subsetD] |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
386 |
insert_Key_singleton |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
387 |
Key_not_used insert_Key_image Un_assoc [THEN sym] |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
388 |
|
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
389 |
ML |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
390 |
{* |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
391 |
val analz_image_freshK_lemma = thm "analz_image_freshK_lemma"; |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
392 |
val analz_image_freshK_simps = thms "analz_image_freshK_simps"; |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
393 |
|
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
394 |
val analz_image_freshK_ss = |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
395 |
simpset() delsimps [image_insert, image_Un] |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
396 |
delsimps [imp_disjL] (*reduces blow-up*) |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
397 |
addsimps thms "analz_image_freshK_simps" |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
398 |
*} |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
399 |
|
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
400 |
method_setup analz_freshK = {* |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
401 |
Method.no_args |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
402 |
(Method.METHOD |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
403 |
(fn facts => EVERY [REPEAT_FIRST (resolve_tac [allI, ballI, impI]), |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
404 |
REPEAT_FIRST (rtac analz_image_freshK_lemma), |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
405 |
ALLGOALS (asm_simp_tac analz_image_freshK_ss)])) *} |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
406 |
"for proving the Session Key Compromise theorem" |
13922 | 407 |
|
408 |
subsection{*Specialized Methods for Possibility Theorems*} |
|
409 |
||
410 |
ML |
|
411 |
{* |
|
412 |
val Nonce_supply = thm "Nonce_supply"; |
|
413 |
||
414 |
(*Tactic for possibility theorems (Isar interface)*) |
|
415 |
fun gen_possibility_tac ss state = state |> |
|
416 |
REPEAT (*omit used_Says so that Nonces start from different traces!*) |
|
417 |
(ALLGOALS (simp_tac (ss delsimps [used_Says])) |
|
418 |
THEN |
|
419 |
REPEAT_FIRST (eq_assume_tac ORELSE' |
|
420 |
resolve_tac [refl, conjI, Nonce_supply])) |
|
421 |
||
422 |
(*Tactic for possibility theorems (ML script version)*) |
|
423 |
fun possibility_tac state = gen_possibility_tac (simpset()) state |
|
14207
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
424 |
|
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
425 |
(*For harder protocols (such as Recur) where we have to set up some |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
426 |
nonces and keys initially*) |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
427 |
fun basic_possibility_tac st = st |> |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
428 |
REPEAT |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
429 |
(ALLGOALS (asm_simp_tac (simpset() setSolver safe_solver)) |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
430 |
THEN |
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
paulson
parents:
14200
diff
changeset
|
431 |
REPEAT_FIRST (resolve_tac [refl, conjI])) |
13922 | 432 |
*} |
11104 | 433 |
|
434 |
method_setup possibility = {* |
|
11270
a315a3862bb4
better treatment of methods: uses Method.ctxt_args to refer to current
paulson
parents:
11104
diff
changeset
|
435 |
Method.ctxt_args (fn ctxt => |
a315a3862bb4
better treatment of methods: uses Method.ctxt_args to refer to current
paulson
parents:
11104
diff
changeset
|
436 |
Method.METHOD (fn facts => |
15032 | 437 |
gen_possibility_tac (local_simpset_of ctxt))) *} |
11104 | 438 |
"for proving possibility theorems" |
2318 | 439 |
|
440 |
end |