author | wenzelm |
Thu, 19 Mar 2015 22:30:57 +0100 | |
changeset 59755 | f8d164ab0dc1 |
parent 59498 | 50b60f501b05 |
child 59763 | 56d2c357e6b5 |
permissions | -rw-r--r-- |
37936 | 1 |
(* Title: HOL/Auth/Message.thy |
1839 | 2 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
3 |
Copyright 1996 University of Cambridge |
|
4 |
||
5 |
Datatypes of agents and messages; |
|
1913 | 6 |
Inductive relations "parts", "analz" and "synth" |
1839 | 7 |
*) |
8 |
||
58889 | 9 |
section{*Theory of Agents and Messages for Security Protocols*} |
13956 | 10 |
|
27105
5f139027c365
slightly tuning of some proofs involving case distinction and induction on natural numbers and similar
haftmann
parents:
26807
diff
changeset
|
11 |
theory Message |
5f139027c365
slightly tuning of some proofs involving case distinction and induction on natural numbers and similar
haftmann
parents:
26807
diff
changeset
|
12 |
imports Main |
5f139027c365
slightly tuning of some proofs involving case distinction and induction on natural numbers and similar
haftmann
parents:
26807
diff
changeset
|
13 |
begin |
11189 | 14 |
|
15 |
(*Needed occasionally with spy_analz_tac, e.g. in analz_insert_Key_newK*) |
|
13926 | 16 |
lemma [simp] : "A \<union> (B \<union> A) = B \<union> A" |
11189 | 17 |
by blast |
1839 | 18 |
|
41774 | 19 |
type_synonym |
1839 | 20 |
key = nat |
21 |
||
22 |
consts |
|
14126
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
23 |
all_symmetric :: bool --{*true if all keys are symmetric*} |
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
24 |
invKey :: "key=>key" --{*inverse of a symmetric key*} |
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
25 |
|
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
26 |
specification (invKey) |
14181 | 27 |
invKey [simp]: "invKey (invKey K) = K" |
28 |
invKey_symmetric: "all_symmetric --> invKey = id" |
|
14126
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
29 |
by (rule exI [of _ id], auto) |
1839 | 30 |
|
14126
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
31 |
|
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
32 |
text{*The inverse of a symmetric key is itself; that of a public key |
28824746d046
Tidying and replacement of some axioms by specifications
paulson
parents:
13956
diff
changeset
|
33 |
is the private key and vice versa*} |
1839 | 34 |
|
35416
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents:
35109
diff
changeset
|
35 |
definition symKeys :: "key set" where |
11230
756c5034f08b
misc tidying; changing the predicate isSymKey to the set symKeys
paulson
parents:
11192
diff
changeset
|
36 |
"symKeys == {K. invKey K = K}" |
1839 | 37 |
|
58310 | 38 |
datatype --{*We allow any number of friendly agents*} |
2032 | 39 |
agent = Server | Friend nat | Spy |
1839 | 40 |
|
58310 | 41 |
datatype |
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32149
diff
changeset
|
42 |
msg = Agent agent --{*Agent names*} |
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
43 |
| Number nat --{*Ordinary integers, timestamps, ...*} |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
44 |
| Nonce nat --{*Unguessable nonces*} |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
45 |
| Key key --{*Crypto keys*} |
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32149
diff
changeset
|
46 |
| Hash msg --{*Hashing*} |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32149
diff
changeset
|
47 |
| MPair msg msg --{*Compound messages*} |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32149
diff
changeset
|
48 |
| Crypt key msg --{*Encryption, public- or shared-key*} |
1839 | 49 |
|
5234 | 50 |
|
16818 | 51 |
text{*Concrete syntax: messages appear as {|A,B,NA|}, etc...*} |
5234 | 52 |
syntax |
35109 | 53 |
"_MTuple" :: "['a, args] => 'a * 'b" ("(2{|_,/ _|})") |
1839 | 54 |
|
9686 | 55 |
syntax (xsymbols) |
35109 | 56 |
"_MTuple" :: "['a, args] => 'a * 'b" ("(2\<lbrace>_,/ _\<rbrace>)") |
9686 | 57 |
|
1839 | 58 |
translations |
59 |
"{|x, y, z|}" == "{|x, {|y, z|}|}" |
|
35054 | 60 |
"{|x, y|}" == "CONST MPair x y" |
1839 | 61 |
|
62 |
||
35416
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents:
35109
diff
changeset
|
63 |
definition HPair :: "[msg,msg] => msg" ("(4Hash[_] /_)" [0, 1000]) where |
16818 | 64 |
--{*Message Y paired with a MAC computed with the help of X*} |
2516
4d68fbe6378b
Now with Andy Gordon's treatment of freshness to replace newN/K
paulson
parents:
2484
diff
changeset
|
65 |
"Hash[X] Y == {| Hash{|X,Y|}, Y|}" |
2484 | 66 |
|
35416
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents:
35109
diff
changeset
|
67 |
definition keysFor :: "msg set => key set" where |
16818 | 68 |
--{*Keys useful to decrypt elements of a message set*} |
11192 | 69 |
"keysFor H == invKey ` {K. \<exists>X. Crypt K X \<in> H}" |
1839 | 70 |
|
16818 | 71 |
|
72 |
subsubsection{*Inductive Definition of All Parts" of a Message*} |
|
1839 | 73 |
|
23746 | 74 |
inductive_set |
75 |
parts :: "msg set => msg set" |
|
76 |
for H :: "msg set" |
|
77 |
where |
|
11192 | 78 |
Inj [intro]: "X \<in> H ==> X \<in> parts H" |
23746 | 79 |
| Fst: "{|X,Y|} \<in> parts H ==> X \<in> parts H" |
80 |
| Snd: "{|X,Y|} \<in> parts H ==> Y \<in> parts H" |
|
81 |
| Body: "Crypt K X \<in> parts H ==> X \<in> parts H" |
|
11189 | 82 |
|
83 |
||
16818 | 84 |
text{*Monotonicity*} |
85 |
lemma parts_mono: "G \<subseteq> H ==> parts(G) \<subseteq> parts(H)" |
|
11189 | 86 |
apply auto |
87 |
apply (erule parts.induct) |
|
16818 | 88 |
apply (blast dest: parts.Fst parts.Snd parts.Body)+ |
11189 | 89 |
done |
1839 | 90 |
|
91 |
||
16818 | 92 |
text{*Equations hold because constructors are injective.*} |
13926 | 93 |
lemma Friend_image_eq [simp]: "(Friend x \<in> Friend`A) = (x:A)" |
94 |
by auto |
|
95 |
||
96 |
lemma Key_image_eq [simp]: "(Key x \<in> Key`A) = (x\<in>A)" |
|
97 |
by auto |
|
98 |
||
99 |
lemma Nonce_Key_image_eq [simp]: "(Nonce x \<notin> Key`A)" |
|
100 |
by auto |
|
101 |
||
102 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
103 |
subsubsection{*Inverse of keys *} |
13926 | 104 |
|
105 |
lemma invKey_eq [simp]: "(invKey K = invKey K') = (K=K')" |
|
28698 | 106 |
by (metis invKey) |
13926 | 107 |
|
108 |
||
109 |
subsection{*keysFor operator*} |
|
110 |
||
111 |
lemma keysFor_empty [simp]: "keysFor {} = {}" |
|
112 |
by (unfold keysFor_def, blast) |
|
113 |
||
114 |
lemma keysFor_Un [simp]: "keysFor (H \<union> H') = keysFor H \<union> keysFor H'" |
|
115 |
by (unfold keysFor_def, blast) |
|
116 |
||
117 |
lemma keysFor_UN [simp]: "keysFor (\<Union>i\<in>A. H i) = (\<Union>i\<in>A. keysFor (H i))" |
|
118 |
by (unfold keysFor_def, blast) |
|
119 |
||
16818 | 120 |
text{*Monotonicity*} |
121 |
lemma keysFor_mono: "G \<subseteq> H ==> keysFor(G) \<subseteq> keysFor(H)" |
|
13926 | 122 |
by (unfold keysFor_def, blast) |
123 |
||
124 |
lemma keysFor_insert_Agent [simp]: "keysFor (insert (Agent A) H) = keysFor H" |
|
125 |
by (unfold keysFor_def, auto) |
|
126 |
||
127 |
lemma keysFor_insert_Nonce [simp]: "keysFor (insert (Nonce N) H) = keysFor H" |
|
128 |
by (unfold keysFor_def, auto) |
|
129 |
||
130 |
lemma keysFor_insert_Number [simp]: "keysFor (insert (Number N) H) = keysFor H" |
|
131 |
by (unfold keysFor_def, auto) |
|
132 |
||
133 |
lemma keysFor_insert_Key [simp]: "keysFor (insert (Key K) H) = keysFor H" |
|
134 |
by (unfold keysFor_def, auto) |
|
135 |
||
136 |
lemma keysFor_insert_Hash [simp]: "keysFor (insert (Hash X) H) = keysFor H" |
|
137 |
by (unfold keysFor_def, auto) |
|
138 |
||
139 |
lemma keysFor_insert_MPair [simp]: "keysFor (insert {|X,Y|} H) = keysFor H" |
|
140 |
by (unfold keysFor_def, auto) |
|
141 |
||
142 |
lemma keysFor_insert_Crypt [simp]: |
|
143 |
"keysFor (insert (Crypt K X) H) = insert (invKey K) (keysFor H)" |
|
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
144 |
by (unfold keysFor_def, auto) |
13926 | 145 |
|
146 |
lemma keysFor_image_Key [simp]: "keysFor (Key`E) = {}" |
|
147 |
by (unfold keysFor_def, auto) |
|
148 |
||
149 |
lemma Crypt_imp_invKey_keysFor: "Crypt K X \<in> H ==> invKey K \<in> keysFor H" |
|
150 |
by (unfold keysFor_def, blast) |
|
151 |
||
152 |
||
153 |
subsection{*Inductive relation "parts"*} |
|
154 |
||
155 |
lemma MPair_parts: |
|
156 |
"[| {|X,Y|} \<in> parts H; |
|
157 |
[| X \<in> parts H; Y \<in> parts H |] ==> P |] ==> P" |
|
158 |
by (blast dest: parts.Fst parts.Snd) |
|
159 |
||
160 |
declare MPair_parts [elim!] parts.Body [dest!] |
|
161 |
text{*NB These two rules are UNSAFE in the formal sense, as they discard the |
|
162 |
compound message. They work well on THIS FILE. |
|
163 |
@{text MPair_parts} is left as SAFE because it speeds up proofs. |
|
164 |
The Crypt rule is normally kept UNSAFE to avoid breaking up certificates.*} |
|
165 |
||
166 |
lemma parts_increasing: "H \<subseteq> parts(H)" |
|
167 |
by blast |
|
168 |
||
45605 | 169 |
lemmas parts_insertI = subset_insertI [THEN parts_mono, THEN subsetD] |
13926 | 170 |
|
171 |
lemma parts_empty [simp]: "parts{} = {}" |
|
172 |
apply safe |
|
173 |
apply (erule parts.induct, blast+) |
|
174 |
done |
|
175 |
||
176 |
lemma parts_emptyE [elim!]: "X\<in> parts{} ==> P" |
|
177 |
by simp |
|
178 |
||
16818 | 179 |
text{*WARNING: loops if H = {Y}, therefore must not be repeated!*} |
13926 | 180 |
lemma parts_singleton: "X\<in> parts H ==> \<exists>Y\<in>H. X\<in> parts {Y}" |
26807
4cd176ea28dc
Replaced blast by fast in proof of parts_singleton, since blast looped
berghofe
parents:
26342
diff
changeset
|
181 |
by (erule parts.induct, fast+) |
13926 | 182 |
|
183 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
184 |
subsubsection{*Unions *} |
13926 | 185 |
|
186 |
lemma parts_Un_subset1: "parts(G) \<union> parts(H) \<subseteq> parts(G \<union> H)" |
|
187 |
by (intro Un_least parts_mono Un_upper1 Un_upper2) |
|
188 |
||
189 |
lemma parts_Un_subset2: "parts(G \<union> H) \<subseteq> parts(G) \<union> parts(H)" |
|
190 |
apply (rule subsetI) |
|
191 |
apply (erule parts.induct, blast+) |
|
192 |
done |
|
193 |
||
194 |
lemma parts_Un [simp]: "parts(G \<union> H) = parts(G) \<union> parts(H)" |
|
195 |
by (intro equalityI parts_Un_subset1 parts_Un_subset2) |
|
196 |
||
197 |
lemma parts_insert: "parts (insert X H) = parts {X} \<union> parts H" |
|
34185 | 198 |
by (metis insert_is_Un parts_Un) |
13926 | 199 |
|
16818 | 200 |
text{*TWO inserts to avoid looping. This rewrite is better than nothing. |
57394 | 201 |
But its behaviour can be strange.*} |
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
202 |
lemma parts_insert2: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
203 |
"parts (insert X (insert Y H)) = parts {X} \<union> parts {Y} \<union> parts H" |
34185 | 204 |
by (metis Un_commute Un_empty_right Un_insert_right insert_is_Un parts_Un) |
13926 | 205 |
|
206 |
lemma parts_UN_subset1: "(\<Union>x\<in>A. parts(H x)) \<subseteq> parts(\<Union>x\<in>A. H x)" |
|
207 |
by (intro UN_least parts_mono UN_upper) |
|
208 |
||
209 |
lemma parts_UN_subset2: "parts(\<Union>x\<in>A. H x) \<subseteq> (\<Union>x\<in>A. parts(H x))" |
|
210 |
apply (rule subsetI) |
|
211 |
apply (erule parts.induct, blast+) |
|
212 |
done |
|
213 |
||
214 |
lemma parts_UN [simp]: "parts(\<Union>x\<in>A. H x) = (\<Union>x\<in>A. parts(H x))" |
|
215 |
by (intro equalityI parts_UN_subset1 parts_UN_subset2) |
|
216 |
||
16818 | 217 |
text{*Added to simplify arguments to parts, analz and synth. |
218 |
NOTE: the UN versions are no longer used!*} |
|
13926 | 219 |
|
220 |
||
221 |
text{*This allows @{text blast} to simplify occurrences of |
|
222 |
@{term "parts(G\<union>H)"} in the assumption.*} |
|
17729 | 223 |
lemmas in_parts_UnE = parts_Un [THEN equalityD1, THEN subsetD, THEN UnE] |
224 |
declare in_parts_UnE [elim!] |
|
13926 | 225 |
|
226 |
||
227 |
lemma parts_insert_subset: "insert X (parts H) \<subseteq> parts(insert X H)" |
|
228 |
by (blast intro: parts_mono [THEN [2] rev_subsetD]) |
|
229 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
230 |
subsubsection{*Idempotence and transitivity *} |
13926 | 231 |
|
232 |
lemma parts_partsD [dest!]: "X\<in> parts (parts H) ==> X\<in> parts H" |
|
233 |
by (erule parts.induct, blast+) |
|
234 |
||
235 |
lemma parts_idem [simp]: "parts (parts H) = parts H" |
|
236 |
by blast |
|
237 |
||
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16818
diff
changeset
|
238 |
lemma parts_subset_iff [simp]: "(parts G \<subseteq> parts H) = (G \<subseteq> parts H)" |
35566
3c01f5ad1d34
Simplified a couple of proofs and corrected a comment
paulson
parents:
35416
diff
changeset
|
239 |
by (metis parts_idem parts_increasing parts_mono subset_trans) |
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16818
diff
changeset
|
240 |
|
13926 | 241 |
lemma parts_trans: "[| X\<in> parts G; G \<subseteq> parts H |] ==> X\<in> parts H" |
41693
47532fe9e075
Introduction of metis calls and other cosmetic modifications.
paulson
parents:
39216
diff
changeset
|
242 |
by (metis parts_subset_iff set_mp) |
13926 | 243 |
|
16818 | 244 |
text{*Cut*} |
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
245 |
lemma parts_cut: |
18492 | 246 |
"[| Y\<in> parts (insert X G); X\<in> parts H |] ==> Y\<in> parts (G \<union> H)" |
247 |
by (blast intro: parts_trans) |
|
248 |
||
13926 | 249 |
lemma parts_cut_eq [simp]: "X\<in> parts H ==> parts (insert X H) = parts H" |
41693
47532fe9e075
Introduction of metis calls and other cosmetic modifications.
paulson
parents:
39216
diff
changeset
|
250 |
by (metis insert_absorb parts_idem parts_insert) |
13926 | 251 |
|
252 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
253 |
subsubsection{*Rewrite rules for pulling out atomic messages *} |
13926 | 254 |
|
255 |
lemmas parts_insert_eq_I = equalityI [OF subsetI parts_insert_subset] |
|
256 |
||
257 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
258 |
lemma parts_insert_Agent [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
259 |
"parts (insert (Agent agt) H) = insert (Agent agt) (parts H)" |
13926 | 260 |
apply (rule parts_insert_eq_I) |
261 |
apply (erule parts.induct, auto) |
|
262 |
done |
|
263 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
264 |
lemma parts_insert_Nonce [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
265 |
"parts (insert (Nonce N) H) = insert (Nonce N) (parts H)" |
13926 | 266 |
apply (rule parts_insert_eq_I) |
267 |
apply (erule parts.induct, auto) |
|
268 |
done |
|
269 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
270 |
lemma parts_insert_Number [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
271 |
"parts (insert (Number N) H) = insert (Number N) (parts H)" |
13926 | 272 |
apply (rule parts_insert_eq_I) |
273 |
apply (erule parts.induct, auto) |
|
274 |
done |
|
275 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
276 |
lemma parts_insert_Key [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
277 |
"parts (insert (Key K) H) = insert (Key K) (parts H)" |
13926 | 278 |
apply (rule parts_insert_eq_I) |
279 |
apply (erule parts.induct, auto) |
|
280 |
done |
|
281 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
282 |
lemma parts_insert_Hash [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
283 |
"parts (insert (Hash X) H) = insert (Hash X) (parts H)" |
13926 | 284 |
apply (rule parts_insert_eq_I) |
285 |
apply (erule parts.induct, auto) |
|
286 |
done |
|
287 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
288 |
lemma parts_insert_Crypt [simp]: |
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16818
diff
changeset
|
289 |
"parts (insert (Crypt K X) H) = insert (Crypt K X) (parts (insert X H))" |
13926 | 290 |
apply (rule equalityI) |
291 |
apply (rule subsetI) |
|
292 |
apply (erule parts.induct, auto) |
|
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16818
diff
changeset
|
293 |
apply (blast intro: parts.Body) |
13926 | 294 |
done |
295 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
296 |
lemma parts_insert_MPair [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
297 |
"parts (insert {|X,Y|} H) = |
13926 | 298 |
insert {|X,Y|} (parts (insert X (insert Y H)))" |
299 |
apply (rule equalityI) |
|
300 |
apply (rule subsetI) |
|
301 |
apply (erule parts.induct, auto) |
|
302 |
apply (blast intro: parts.Fst parts.Snd)+ |
|
303 |
done |
|
304 |
||
305 |
lemma parts_image_Key [simp]: "parts (Key`N) = Key`N" |
|
306 |
apply auto |
|
307 |
apply (erule parts.induct, auto) |
|
308 |
done |
|
309 |
||
310 |
||
16818 | 311 |
text{*In any message, there is an upper bound N on its greatest nonce.*} |
13926 | 312 |
lemma msg_Nonce_supply: "\<exists>N. \<forall>n. N\<le>n --> Nonce n \<notin> parts {msg}" |
57394 | 313 |
proof (induct msg) |
314 |
case (Nonce n) |
|
315 |
show ?case |
|
316 |
by simp (metis Suc_n_not_le_n) |
|
317 |
next |
|
318 |
case (MPair X Y) |
|
319 |
then show ?case --{*metis works out the necessary sum itself!*} |
|
320 |
by (simp add: parts_insert2) (metis le_trans nat_le_linear) |
|
321 |
qed auto |
|
13926 | 322 |
|
323 |
subsection{*Inductive relation "analz"*} |
|
324 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
325 |
text{*Inductive definition of "analz" -- what can be broken down from a set of |
1839 | 326 |
messages, including keys. A form of downward closure. Pairs can |
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
327 |
be taken apart; messages decrypted with known keys. *} |
1839 | 328 |
|
23746 | 329 |
inductive_set |
330 |
analz :: "msg set => msg set" |
|
331 |
for H :: "msg set" |
|
332 |
where |
|
11192 | 333 |
Inj [intro,simp] : "X \<in> H ==> X \<in> analz H" |
23746 | 334 |
| Fst: "{|X,Y|} \<in> analz H ==> X \<in> analz H" |
335 |
| Snd: "{|X,Y|} \<in> analz H ==> Y \<in> analz H" |
|
336 |
| Decrypt [dest]: |
|
11192 | 337 |
"[|Crypt K X \<in> analz H; Key(invKey K): analz H|] ==> X \<in> analz H" |
1839 | 338 |
|
339 |
||
16818 | 340 |
text{*Monotonicity; Lemma 1 of Lowe's paper*} |
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
341 |
lemma analz_mono: "G\<subseteq>H ==> analz(G) \<subseteq> analz(H)" |
11189 | 342 |
apply auto |
343 |
apply (erule analz.induct) |
|
16818 | 344 |
apply (auto dest: analz.Fst analz.Snd) |
11189 | 345 |
done |
346 |
||
13926 | 347 |
text{*Making it safe speeds up proofs*} |
348 |
lemma MPair_analz [elim!]: |
|
349 |
"[| {|X,Y|} \<in> analz H; |
|
350 |
[| X \<in> analz H; Y \<in> analz H |] ==> P |
|
351 |
|] ==> P" |
|
352 |
by (blast dest: analz.Fst analz.Snd) |
|
353 |
||
354 |
lemma analz_increasing: "H \<subseteq> analz(H)" |
|
355 |
by blast |
|
356 |
||
357 |
lemma analz_subset_parts: "analz H \<subseteq> parts H" |
|
358 |
apply (rule subsetI) |
|
359 |
apply (erule analz.induct, blast+) |
|
360 |
done |
|
361 |
||
45605 | 362 |
lemmas analz_into_parts = analz_subset_parts [THEN subsetD] |
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
363 |
|
45605 | 364 |
lemmas not_parts_not_analz = analz_subset_parts [THEN contra_subsetD] |
13926 | 365 |
|
366 |
||
367 |
lemma parts_analz [simp]: "parts (analz H) = parts H" |
|
34185 | 368 |
by (metis analz_increasing analz_subset_parts equalityI parts_mono parts_subset_iff) |
13926 | 369 |
|
370 |
lemma analz_parts [simp]: "analz (parts H) = parts H" |
|
371 |
apply auto |
|
372 |
apply (erule analz.induct, auto) |
|
373 |
done |
|
374 |
||
45605 | 375 |
lemmas analz_insertI = subset_insertI [THEN analz_mono, THEN [2] rev_subsetD] |
13926 | 376 |
|
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
377 |
subsubsection{*General equational properties *} |
13926 | 378 |
|
379 |
lemma analz_empty [simp]: "analz{} = {}" |
|
380 |
apply safe |
|
381 |
apply (erule analz.induct, blast+) |
|
382 |
done |
|
383 |
||
16818 | 384 |
text{*Converse fails: we can analz more from the union than from the |
385 |
separate parts, as a key in one might decrypt a message in the other*} |
|
13926 | 386 |
lemma analz_Un: "analz(G) \<union> analz(H) \<subseteq> analz(G \<union> H)" |
387 |
by (intro Un_least analz_mono Un_upper1 Un_upper2) |
|
388 |
||
389 |
lemma analz_insert: "insert X (analz H) \<subseteq> analz(insert X H)" |
|
390 |
by (blast intro: analz_mono [THEN [2] rev_subsetD]) |
|
391 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
392 |
subsubsection{*Rewrite rules for pulling out atomic messages *} |
13926 | 393 |
|
394 |
lemmas analz_insert_eq_I = equalityI [OF subsetI analz_insert] |
|
395 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
396 |
lemma analz_insert_Agent [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
397 |
"analz (insert (Agent agt) H) = insert (Agent agt) (analz H)" |
13926 | 398 |
apply (rule analz_insert_eq_I) |
399 |
apply (erule analz.induct, auto) |
|
400 |
done |
|
401 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
402 |
lemma analz_insert_Nonce [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
403 |
"analz (insert (Nonce N) H) = insert (Nonce N) (analz H)" |
13926 | 404 |
apply (rule analz_insert_eq_I) |
405 |
apply (erule analz.induct, auto) |
|
406 |
done |
|
407 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
408 |
lemma analz_insert_Number [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
409 |
"analz (insert (Number N) H) = insert (Number N) (analz H)" |
13926 | 410 |
apply (rule analz_insert_eq_I) |
411 |
apply (erule analz.induct, auto) |
|
412 |
done |
|
413 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
414 |
lemma analz_insert_Hash [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
415 |
"analz (insert (Hash X) H) = insert (Hash X) (analz H)" |
13926 | 416 |
apply (rule analz_insert_eq_I) |
417 |
apply (erule analz.induct, auto) |
|
418 |
done |
|
419 |
||
16818 | 420 |
text{*Can only pull out Keys if they are not needed to decrypt the rest*} |
13926 | 421 |
lemma analz_insert_Key [simp]: |
422 |
"K \<notin> keysFor (analz H) ==> |
|
423 |
analz (insert (Key K) H) = insert (Key K) (analz H)" |
|
424 |
apply (unfold keysFor_def) |
|
425 |
apply (rule analz_insert_eq_I) |
|
426 |
apply (erule analz.induct, auto) |
|
427 |
done |
|
428 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
429 |
lemma analz_insert_MPair [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
430 |
"analz (insert {|X,Y|} H) = |
13926 | 431 |
insert {|X,Y|} (analz (insert X (insert Y H)))" |
432 |
apply (rule equalityI) |
|
433 |
apply (rule subsetI) |
|
434 |
apply (erule analz.induct, auto) |
|
435 |
apply (erule analz.induct) |
|
436 |
apply (blast intro: analz.Fst analz.Snd)+ |
|
437 |
done |
|
438 |
||
16818 | 439 |
text{*Can pull out enCrypted message if the Key is not known*} |
13926 | 440 |
lemma analz_insert_Crypt: |
441 |
"Key (invKey K) \<notin> analz H |
|
442 |
==> analz (insert (Crypt K X) H) = insert (Crypt K X) (analz H)" |
|
443 |
apply (rule analz_insert_eq_I) |
|
444 |
apply (erule analz.induct, auto) |
|
445 |
||
446 |
done |
|
447 |
||
448 |
lemma lemma1: "Key (invKey K) \<in> analz H ==> |
|
449 |
analz (insert (Crypt K X) H) \<subseteq> |
|
450 |
insert (Crypt K X) (analz (insert X H))" |
|
451 |
apply (rule subsetI) |
|
23746 | 452 |
apply (erule_tac x = x in analz.induct, auto) |
13926 | 453 |
done |
454 |
||
455 |
lemma lemma2: "Key (invKey K) \<in> analz H ==> |
|
456 |
insert (Crypt K X) (analz (insert X H)) \<subseteq> |
|
457 |
analz (insert (Crypt K X) H)" |
|
458 |
apply auto |
|
23746 | 459 |
apply (erule_tac x = x in analz.induct, auto) |
13926 | 460 |
apply (blast intro: analz_insertI analz.Decrypt) |
461 |
done |
|
462 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
463 |
lemma analz_insert_Decrypt: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
464 |
"Key (invKey K) \<in> analz H ==> |
13926 | 465 |
analz (insert (Crypt K X) H) = |
466 |
insert (Crypt K X) (analz (insert X H))" |
|
467 |
by (intro equalityI lemma1 lemma2) |
|
468 |
||
16818 | 469 |
text{*Case analysis: either the message is secure, or it is not! Effective, |
470 |
but can cause subgoals to blow up! Use with @{text "split_if"}; apparently |
|
471 |
@{text "split_tac"} does not cope with patterns such as @{term"analz (insert |
|
472 |
(Crypt K X) H)"} *} |
|
13926 | 473 |
lemma analz_Crypt_if [simp]: |
474 |
"analz (insert (Crypt K X) H) = |
|
475 |
(if (Key (invKey K) \<in> analz H) |
|
476 |
then insert (Crypt K X) (analz (insert X H)) |
|
477 |
else insert (Crypt K X) (analz H))" |
|
478 |
by (simp add: analz_insert_Crypt analz_insert_Decrypt) |
|
479 |
||
480 |
||
16818 | 481 |
text{*This rule supposes "for the sake of argument" that we have the key.*} |
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
482 |
lemma analz_insert_Crypt_subset: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
483 |
"analz (insert (Crypt K X) H) \<subseteq> |
13926 | 484 |
insert (Crypt K X) (analz (insert X H))" |
485 |
apply (rule subsetI) |
|
486 |
apply (erule analz.induct, auto) |
|
487 |
done |
|
488 |
||
489 |
||
490 |
lemma analz_image_Key [simp]: "analz (Key`N) = Key`N" |
|
491 |
apply auto |
|
492 |
apply (erule analz.induct, auto) |
|
493 |
done |
|
494 |
||
495 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
496 |
subsubsection{*Idempotence and transitivity *} |
13926 | 497 |
|
498 |
lemma analz_analzD [dest!]: "X\<in> analz (analz H) ==> X\<in> analz H" |
|
499 |
by (erule analz.induct, blast+) |
|
500 |
||
501 |
lemma analz_idem [simp]: "analz (analz H) = analz H" |
|
502 |
by blast |
|
503 |
||
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16818
diff
changeset
|
504 |
lemma analz_subset_iff [simp]: "(analz G \<subseteq> analz H) = (G \<subseteq> analz H)" |
34185 | 505 |
by (metis analz_idem analz_increasing analz_mono subset_trans) |
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16818
diff
changeset
|
506 |
|
13926 | 507 |
lemma analz_trans: "[| X\<in> analz G; G \<subseteq> analz H |] ==> X\<in> analz H" |
508 |
by (drule analz_mono, blast) |
|
509 |
||
16818 | 510 |
text{*Cut; Lemma 2 of Lowe*} |
13926 | 511 |
lemma analz_cut: "[| Y\<in> analz (insert X H); X\<in> analz H |] ==> Y\<in> analz H" |
512 |
by (erule analz_trans, blast) |
|
513 |
||
514 |
(*Cut can be proved easily by induction on |
|
515 |
"Y: analz (insert X H) ==> X: analz H --> Y: analz H" |
|
516 |
*) |
|
517 |
||
16818 | 518 |
text{*This rewrite rule helps in the simplification of messages that involve |
13926 | 519 |
the forwarding of unknown components (X). Without it, removing occurrences |
16818 | 520 |
of X can be very complicated. *} |
13926 | 521 |
lemma analz_insert_eq: "X\<in> analz H ==> analz (insert X H) = analz H" |
41693
47532fe9e075
Introduction of metis calls and other cosmetic modifications.
paulson
parents:
39216
diff
changeset
|
522 |
by (metis analz_cut analz_insert_eq_I insert_absorb) |
13926 | 523 |
|
524 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
525 |
text{*A congruence rule for "analz" *} |
13926 | 526 |
|
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
527 |
lemma analz_subset_cong: |
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16818
diff
changeset
|
528 |
"[| analz G \<subseteq> analz G'; analz H \<subseteq> analz H' |] |
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16818
diff
changeset
|
529 |
==> analz (G \<union> H) \<subseteq> analz (G' \<union> H')" |
41693
47532fe9e075
Introduction of metis calls and other cosmetic modifications.
paulson
parents:
39216
diff
changeset
|
530 |
by (metis Un_mono analz_Un analz_subset_iff subset_trans) |
13926 | 531 |
|
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
532 |
lemma analz_cong: |
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16818
diff
changeset
|
533 |
"[| analz G = analz G'; analz H = analz H' |] |
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16818
diff
changeset
|
534 |
==> analz (G \<union> H) = analz (G' \<union> H')" |
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
535 |
by (intro equalityI analz_subset_cong, simp_all) |
13926 | 536 |
|
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
537 |
lemma analz_insert_cong: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
538 |
"analz H = analz H' ==> analz(insert X H) = analz(insert X H')" |
13926 | 539 |
by (force simp only: insert_def intro!: analz_cong) |
540 |
||
16818 | 541 |
text{*If there are no pairs or encryptions then analz does nothing*} |
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
542 |
lemma analz_trivial: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
543 |
"[| \<forall>X Y. {|X,Y|} \<notin> H; \<forall>X K. Crypt K X \<notin> H |] ==> analz H = H" |
13926 | 544 |
apply safe |
545 |
apply (erule analz.induct, blast+) |
|
546 |
done |
|
547 |
||
16818 | 548 |
text{*These two are obsolete (with a single Spy) but cost little to prove...*} |
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
549 |
lemma analz_UN_analz_lemma: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
550 |
"X\<in> analz (\<Union>i\<in>A. analz (H i)) ==> X\<in> analz (\<Union>i\<in>A. H i)" |
13926 | 551 |
apply (erule analz.induct) |
552 |
apply (blast intro: analz_mono [THEN [2] rev_subsetD])+ |
|
553 |
done |
|
554 |
||
555 |
lemma analz_UN_analz [simp]: "analz (\<Union>i\<in>A. analz (H i)) = analz (\<Union>i\<in>A. H i)" |
|
556 |
by (blast intro: analz_UN_analz_lemma analz_mono [THEN [2] rev_subsetD]) |
|
557 |
||
558 |
||
559 |
subsection{*Inductive relation "synth"*} |
|
560 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
561 |
text{*Inductive definition of "synth" -- what can be built up from a set of |
1839 | 562 |
messages. A form of upward closure. Pairs can be built, messages |
3668 | 563 |
encrypted with known keys. Agent names are public domain. |
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
564 |
Numbers can be guessed, but Nonces cannot be. *} |
1839 | 565 |
|
23746 | 566 |
inductive_set |
567 |
synth :: "msg set => msg set" |
|
568 |
for H :: "msg set" |
|
569 |
where |
|
11192 | 570 |
Inj [intro]: "X \<in> H ==> X \<in> synth H" |
23746 | 571 |
| Agent [intro]: "Agent agt \<in> synth H" |
572 |
| Number [intro]: "Number n \<in> synth H" |
|
573 |
| Hash [intro]: "X \<in> synth H ==> Hash X \<in> synth H" |
|
574 |
| MPair [intro]: "[|X \<in> synth H; Y \<in> synth H|] ==> {|X,Y|} \<in> synth H" |
|
575 |
| Crypt [intro]: "[|X \<in> synth H; Key(K) \<in> H|] ==> Crypt K X \<in> synth H" |
|
11189 | 576 |
|
16818 | 577 |
text{*Monotonicity*} |
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
578 |
lemma synth_mono: "G\<subseteq>H ==> synth(G) \<subseteq> synth(H)" |
16818 | 579 |
by (auto, erule synth.induct, auto) |
11189 | 580 |
|
16818 | 581 |
text{*NO @{text Agent_synth}, as any Agent name can be synthesized. |
582 |
The same holds for @{term Number}*} |
|
11189 | 583 |
|
39216 | 584 |
inductive_simps synth_simps [iff]: |
585 |
"Nonce n \<in> synth H" |
|
586 |
"Key K \<in> synth H" |
|
587 |
"Hash X \<in> synth H" |
|
588 |
"{|X,Y|} \<in> synth H" |
|
589 |
"Crypt K X \<in> synth H" |
|
13926 | 590 |
|
591 |
lemma synth_increasing: "H \<subseteq> synth(H)" |
|
592 |
by blast |
|
593 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
594 |
subsubsection{*Unions *} |
13926 | 595 |
|
16818 | 596 |
text{*Converse fails: we can synth more from the union than from the |
597 |
separate parts, building a compound message using elements of each.*} |
|
13926 | 598 |
lemma synth_Un: "synth(G) \<union> synth(H) \<subseteq> synth(G \<union> H)" |
599 |
by (intro Un_least synth_mono Un_upper1 Un_upper2) |
|
600 |
||
601 |
lemma synth_insert: "insert X (synth H) \<subseteq> synth(insert X H)" |
|
602 |
by (blast intro: synth_mono [THEN [2] rev_subsetD]) |
|
603 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
604 |
subsubsection{*Idempotence and transitivity *} |
13926 | 605 |
|
606 |
lemma synth_synthD [dest!]: "X\<in> synth (synth H) ==> X\<in> synth H" |
|
39216 | 607 |
by (erule synth.induct, auto) |
13926 | 608 |
|
609 |
lemma synth_idem: "synth (synth H) = synth H" |
|
610 |
by blast |
|
611 |
||
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16818
diff
changeset
|
612 |
lemma synth_subset_iff [simp]: "(synth G \<subseteq> synth H) = (G \<subseteq> synth H)" |
35566
3c01f5ad1d34
Simplified a couple of proofs and corrected a comment
paulson
parents:
35416
diff
changeset
|
613 |
by (metis subset_trans synth_idem synth_increasing synth_mono) |
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16818
diff
changeset
|
614 |
|
13926 | 615 |
lemma synth_trans: "[| X\<in> synth G; G \<subseteq> synth H |] ==> X\<in> synth H" |
616 |
by (drule synth_mono, blast) |
|
617 |
||
16818 | 618 |
text{*Cut; Lemma 2 of Lowe*} |
13926 | 619 |
lemma synth_cut: "[| Y\<in> synth (insert X H); X\<in> synth H |] ==> Y\<in> synth H" |
620 |
by (erule synth_trans, blast) |
|
621 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
622 |
lemma Crypt_synth_eq [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
623 |
"Key K \<notin> H ==> (Crypt K X \<in> synth H) = (Crypt K X \<in> H)" |
13926 | 624 |
by blast |
625 |
||
626 |
||
627 |
lemma keysFor_synth [simp]: |
|
628 |
"keysFor (synth H) = keysFor H \<union> invKey`{K. Key K \<in> H}" |
|
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
629 |
by (unfold keysFor_def, blast) |
13926 | 630 |
|
631 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
632 |
subsubsection{*Combinations of parts, analz and synth *} |
13926 | 633 |
|
634 |
lemma parts_synth [simp]: "parts (synth H) = parts H \<union> synth H" |
|
635 |
apply (rule equalityI) |
|
636 |
apply (rule subsetI) |
|
637 |
apply (erule parts.induct) |
|
638 |
apply (blast intro: synth_increasing [THEN parts_mono, THEN subsetD] |
|
639 |
parts.Fst parts.Snd parts.Body)+ |
|
640 |
done |
|
641 |
||
642 |
lemma analz_analz_Un [simp]: "analz (analz G \<union> H) = analz (G \<union> H)" |
|
643 |
apply (intro equalityI analz_subset_cong)+ |
|
644 |
apply simp_all |
|
645 |
done |
|
646 |
||
647 |
lemma analz_synth_Un [simp]: "analz (synth G \<union> H) = analz (G \<union> H) \<union> synth G" |
|
648 |
apply (rule equalityI) |
|
649 |
apply (rule subsetI) |
|
650 |
apply (erule analz.induct) |
|
651 |
prefer 5 apply (blast intro: analz_mono [THEN [2] rev_subsetD]) |
|
652 |
apply (blast intro: analz.Fst analz.Snd analz.Decrypt)+ |
|
653 |
done |
|
654 |
||
655 |
lemma analz_synth [simp]: "analz (synth H) = analz H \<union> synth H" |
|
34185 | 656 |
by (metis Un_empty_right analz_synth_Un) |
13926 | 657 |
|
658 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
659 |
subsubsection{*For reasoning about the Fake rule in traces *} |
13926 | 660 |
|
661 |
lemma parts_insert_subset_Un: "X\<in> G ==> parts(insert X H) \<subseteq> parts G \<union> parts H" |
|
34185 | 662 |
by (metis UnCI Un_upper2 insert_subset parts_Un parts_mono) |
13926 | 663 |
|
35566
3c01f5ad1d34
Simplified a couple of proofs and corrected a comment
paulson
parents:
35416
diff
changeset
|
664 |
text{*More specifically for Fake. See also @{text Fake_parts_sing} below *} |
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
665 |
lemma Fake_parts_insert: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
666 |
"X \<in> synth (analz H) ==> |
13926 | 667 |
parts (insert X H) \<subseteq> synth (analz H) \<union> parts H" |
34185 | 668 |
by (metis Un_commute analz_increasing insert_subset parts_analz parts_mono |
669 |
parts_synth synth_mono synth_subset_iff) |
|
13926 | 670 |
|
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
671 |
lemma Fake_parts_insert_in_Un: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
672 |
"[|Z \<in> parts (insert X H); X: synth (analz H)|] |
34185 | 673 |
==> Z \<in> synth (analz H) \<union> parts H" |
674 |
by (metis Fake_parts_insert set_mp) |
|
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
675 |
|
16818 | 676 |
text{*@{term H} is sometimes @{term"Key ` KK \<union> spies evs"}, so can't put |
677 |
@{term "G=H"}.*} |
|
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
678 |
lemma Fake_analz_insert: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
679 |
"X\<in> synth (analz G) ==> |
13926 | 680 |
analz (insert X H) \<subseteq> synth (analz G) \<union> analz (G \<union> H)" |
681 |
apply (rule subsetI) |
|
34185 | 682 |
apply (subgoal_tac "x \<in> analz (synth (analz G) \<union> H)", force) |
683 |
apply (blast intro: analz_mono [THEN [2] rev_subsetD] analz_mono [THEN synth_mono, THEN [2] rev_subsetD]) |
|
13926 | 684 |
done |
685 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
686 |
lemma analz_conj_parts [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
687 |
"(X \<in> analz H & X \<in> parts H) = (X \<in> analz H)" |
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
14126
diff
changeset
|
688 |
by (blast intro: analz_subset_parts [THEN subsetD]) |
13926 | 689 |
|
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
690 |
lemma analz_disj_parts [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
691 |
"(X \<in> analz H | X \<in> parts H) = (X \<in> parts H)" |
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
14126
diff
changeset
|
692 |
by (blast intro: analz_subset_parts [THEN subsetD]) |
13926 | 693 |
|
16818 | 694 |
text{*Without this equation, other rules for synth and analz would yield |
695 |
redundant cases*} |
|
13926 | 696 |
lemma MPair_synth_analz [iff]: |
697 |
"({|X,Y|} \<in> synth (analz H)) = |
|
698 |
(X \<in> synth (analz H) & Y \<in> synth (analz H))" |
|
699 |
by blast |
|
700 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
701 |
lemma Crypt_synth_analz: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
702 |
"[| Key K \<in> analz H; Key (invKey K) \<in> analz H |] |
13926 | 703 |
==> (Crypt K X \<in> synth (analz H)) = (X \<in> synth (analz H))" |
704 |
by blast |
|
705 |
||
706 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
707 |
lemma Hash_synth_analz [simp]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
708 |
"X \<notin> synth (analz H) |
13926 | 709 |
==> (Hash{|X,Y|} \<in> synth (analz H)) = (Hash{|X,Y|} \<in> analz H)" |
710 |
by blast |
|
711 |
||
712 |
||
713 |
subsection{*HPair: a combination of Hash and MPair*} |
|
714 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
715 |
subsubsection{*Freeness *} |
13926 | 716 |
|
717 |
lemma Agent_neq_HPair: "Agent A ~= Hash[X] Y" |
|
57394 | 718 |
unfolding HPair_def by simp |
13926 | 719 |
|
720 |
lemma Nonce_neq_HPair: "Nonce N ~= Hash[X] Y" |
|
57394 | 721 |
unfolding HPair_def by simp |
13926 | 722 |
|
723 |
lemma Number_neq_HPair: "Number N ~= Hash[X] Y" |
|
57394 | 724 |
unfolding HPair_def by simp |
13926 | 725 |
|
726 |
lemma Key_neq_HPair: "Key K ~= Hash[X] Y" |
|
57394 | 727 |
unfolding HPair_def by simp |
13926 | 728 |
|
729 |
lemma Hash_neq_HPair: "Hash Z ~= Hash[X] Y" |
|
57394 | 730 |
unfolding HPair_def by simp |
13926 | 731 |
|
732 |
lemma Crypt_neq_HPair: "Crypt K X' ~= Hash[X] Y" |
|
57394 | 733 |
unfolding HPair_def by simp |
13926 | 734 |
|
735 |
lemmas HPair_neqs = Agent_neq_HPair Nonce_neq_HPair Number_neq_HPair |
|
736 |
Key_neq_HPair Hash_neq_HPair Crypt_neq_HPair |
|
737 |
||
738 |
declare HPair_neqs [iff] |
|
739 |
declare HPair_neqs [symmetric, iff] |
|
740 |
||
741 |
lemma HPair_eq [iff]: "(Hash[X'] Y' = Hash[X] Y) = (X' = X & Y'=Y)" |
|
742 |
by (simp add: HPair_def) |
|
743 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
744 |
lemma MPair_eq_HPair [iff]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
745 |
"({|X',Y'|} = Hash[X] Y) = (X' = Hash{|X,Y|} & Y'=Y)" |
13926 | 746 |
by (simp add: HPair_def) |
747 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
748 |
lemma HPair_eq_MPair [iff]: |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
749 |
"(Hash[X] Y = {|X',Y'|}) = (X' = Hash{|X,Y|} & Y'=Y)" |
13926 | 750 |
by (auto simp add: HPair_def) |
751 |
||
752 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
753 |
subsubsection{*Specialized laws, proved in terms of those for Hash and MPair *} |
13926 | 754 |
|
755 |
lemma keysFor_insert_HPair [simp]: "keysFor (insert (Hash[X] Y) H) = keysFor H" |
|
756 |
by (simp add: HPair_def) |
|
757 |
||
758 |
lemma parts_insert_HPair [simp]: |
|
759 |
"parts (insert (Hash[X] Y) H) = |
|
760 |
insert (Hash[X] Y) (insert (Hash{|X,Y|}) (parts (insert Y H)))" |
|
761 |
by (simp add: HPair_def) |
|
762 |
||
763 |
lemma analz_insert_HPair [simp]: |
|
764 |
"analz (insert (Hash[X] Y) H) = |
|
765 |
insert (Hash[X] Y) (insert (Hash{|X,Y|}) (analz (insert Y H)))" |
|
766 |
by (simp add: HPair_def) |
|
767 |
||
768 |
lemma HPair_synth_analz [simp]: |
|
769 |
"X \<notin> synth (analz H) |
|
770 |
==> (Hash[X] Y \<in> synth (analz H)) = |
|
771 |
(Hash {|X, Y|} \<in> analz H & Y \<in> synth (analz H))" |
|
39216 | 772 |
by (auto simp add: HPair_def) |
13926 | 773 |
|
774 |
||
16818 | 775 |
text{*We do NOT want Crypt... messages broken up in protocols!!*} |
13926 | 776 |
declare parts.Body [rule del] |
777 |
||
778 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
779 |
text{*Rewrites to push in Key and Crypt messages, so that other messages can |
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
780 |
be pulled out using the @{text analz_insert} rules*} |
13926 | 781 |
|
45605 | 782 |
lemmas pushKeys = |
27225 | 783 |
insert_commute [of "Key K" "Agent C"] |
784 |
insert_commute [of "Key K" "Nonce N"] |
|
785 |
insert_commute [of "Key K" "Number N"] |
|
786 |
insert_commute [of "Key K" "Hash X"] |
|
787 |
insert_commute [of "Key K" "MPair X Y"] |
|
788 |
insert_commute [of "Key K" "Crypt X K'"] |
|
45605 | 789 |
for K C N X Y K' |
13926 | 790 |
|
45605 | 791 |
lemmas pushCrypts = |
27225 | 792 |
insert_commute [of "Crypt X K" "Agent C"] |
793 |
insert_commute [of "Crypt X K" "Agent C"] |
|
794 |
insert_commute [of "Crypt X K" "Nonce N"] |
|
795 |
insert_commute [of "Crypt X K" "Number N"] |
|
796 |
insert_commute [of "Crypt X K" "Hash X'"] |
|
797 |
insert_commute [of "Crypt X K" "MPair X' Y"] |
|
45605 | 798 |
for X K C N X' Y |
13926 | 799 |
|
800 |
text{*Cannot be added with @{text "[simp]"} -- messages should not always be |
|
801 |
re-ordered. *} |
|
802 |
lemmas pushes = pushKeys pushCrypts |
|
803 |
||
804 |
||
43582
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
805 |
subsection{*The set of key-free messages*} |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
806 |
|
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
807 |
(*Note that even the encryption of a key-free message remains key-free. |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
808 |
This concept is valuable because of the theorem analz_keyfree_into_Un, proved below. *) |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
809 |
|
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
810 |
inductive_set |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
811 |
keyfree :: "msg set" |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
812 |
where |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
813 |
Agent: "Agent A \<in> keyfree" |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
814 |
| Number: "Number N \<in> keyfree" |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
815 |
| Nonce: "Nonce N \<in> keyfree" |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
816 |
| Hash: "Hash X \<in> keyfree" |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
817 |
| MPair: "[|X \<in> keyfree; Y \<in> keyfree|] ==> {|X,Y|} \<in> keyfree" |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
818 |
| Crypt: "[|X \<in> keyfree|] ==> Crypt K X \<in> keyfree" |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
819 |
|
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
820 |
|
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
821 |
declare keyfree.intros [intro] |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
822 |
|
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
823 |
inductive_cases keyfree_KeyE: "Key K \<in> keyfree" |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
824 |
inductive_cases keyfree_MPairE: "{|X,Y|} \<in> keyfree" |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
825 |
inductive_cases keyfree_CryptE: "Crypt K X \<in> keyfree" |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
826 |
|
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
827 |
lemma parts_keyfree: "parts (keyfree) \<subseteq> keyfree" |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
828 |
by (clarify, erule parts.induct, auto elim!: keyfree_KeyE keyfree_MPairE keyfree_CryptE) |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
829 |
|
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
830 |
(*The key-free part of a set of messages can be removed from the scope of the analz operator.*) |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
831 |
lemma analz_keyfree_into_Un: "\<lbrakk>X \<in> analz (G \<union> H); G \<subseteq> keyfree\<rbrakk> \<Longrightarrow> X \<in> parts G \<union> analz H" |
57394 | 832 |
apply (erule analz.induct, auto dest: parts.Body) |
44174
d1d79f0e1ea6
make more HOL theories work with separate set type
huffman
parents:
43582
diff
changeset
|
833 |
apply (metis Un_absorb2 keyfree_KeyE parts_Un parts_keyfree UnI2) |
43582
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
834 |
done |
ddca453102ab
keyfree: The set of key-free messages (and associated theorems)
paulson
parents:
42793
diff
changeset
|
835 |
|
13926 | 836 |
subsection{*Tactics useful for many protocol proofs*} |
837 |
ML |
|
838 |
{* |
|
839 |
(*Analysis of Fake cases. Also works for messages that forward unknown parts, |
|
840 |
but this application is no longer necessary if analz_insert_eq is used. |
|
841 |
DEPENDS UPON "X" REFERRING TO THE FRADULENT MESSAGE *) |
|
842 |
||
32117
0762b9ad83df
Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents:
30607
diff
changeset
|
843 |
fun impOfSubs th = th RSN (2, @{thm rev_subsetD}) |
0762b9ad83df
Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents:
30607
diff
changeset
|
844 |
|
13926 | 845 |
(*Apply rules to break down assumptions of the form |
846 |
Y \<in> parts(insert X H) and Y \<in> analz(insert X H) |
|
847 |
*) |
|
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
58889
diff
changeset
|
848 |
fun Fake_insert_tac ctxt = |
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
58889
diff
changeset
|
849 |
dresolve_tac ctxt [impOfSubs @{thm Fake_analz_insert}, |
24122 | 850 |
impOfSubs @{thm Fake_parts_insert}] THEN' |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
58889
diff
changeset
|
851 |
eresolve_tac ctxt [asm_rl, @{thm synth.Inj}]; |
13926 | 852 |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51702
diff
changeset
|
853 |
fun Fake_insert_simp_tac ctxt i = |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
58889
diff
changeset
|
854 |
REPEAT (Fake_insert_tac ctxt i) THEN asm_full_simp_tac ctxt i; |
13926 | 855 |
|
42474 | 856 |
fun atomic_spy_analz_tac ctxt = |
42793 | 857 |
SELECT_GOAL |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51702
diff
changeset
|
858 |
(Fake_insert_simp_tac ctxt 1 THEN |
42793 | 859 |
IF_UNSOLVED |
860 |
(Blast.depth_tac |
|
861 |
(ctxt addIs [@{thm analz_insertI}, impOfSubs @{thm analz_subset_parts}]) 4 1)); |
|
13926 | 862 |
|
42474 | 863 |
fun spy_analz_tac ctxt i = |
42793 | 864 |
DETERM |
865 |
(SELECT_GOAL |
|
866 |
(EVERY |
|
867 |
[ (*push in occurrences of X...*) |
|
868 |
(REPEAT o CHANGED) |
|
59755 | 869 |
(res_inst_tac ctxt [((("x", 1), Position.none), "X")] (insert_commute RS ssubst) 1), |
42793 | 870 |
(*...allowing further simplifications*) |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51702
diff
changeset
|
871 |
simp_tac ctxt 1, |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
58889
diff
changeset
|
872 |
REPEAT (FIRSTGOAL (resolve_tac ctxt [allI,impI,notI,conjI,iffI])), |
42793 | 873 |
DEPTH_SOLVE (atomic_spy_analz_tac ctxt 1)]) i); |
13926 | 874 |
*} |
875 |
||
16818 | 876 |
text{*By default only @{text o_apply} is built-in. But in the presence of |
877 |
eta-expansion this means that some terms displayed as @{term "f o g"} will be |
|
878 |
rewritten, and others will not!*} |
|
13926 | 879 |
declare o_def [simp] |
880 |
||
11189 | 881 |
|
13922 | 882 |
lemma Crypt_notin_image_Key [simp]: "Crypt K X \<notin> Key ` A" |
883 |
by auto |
|
884 |
||
885 |
lemma Hash_notin_image_Key [simp] :"Hash X \<notin> Key ` A" |
|
886 |
by auto |
|
887 |
||
14200
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents:
14181
diff
changeset
|
888 |
lemma synth_analz_mono: "G\<subseteq>H ==> synth (analz(G)) \<subseteq> synth (analz(H))" |
17689
a04b5b43625e
streamlined theory; conformance to recent publication
paulson
parents:
16818
diff
changeset
|
889 |
by (iprover intro: synth_mono analz_mono) |
13922 | 890 |
|
891 |
lemma Fake_analz_eq [simp]: |
|
892 |
"X \<in> synth(analz H) ==> synth (analz (insert X H)) = synth (analz H)" |
|
35566
3c01f5ad1d34
Simplified a couple of proofs and corrected a comment
paulson
parents:
35416
diff
changeset
|
893 |
by (metis Fake_analz_insert Un_absorb Un_absorb1 Un_commute |
34185 | 894 |
subset_insertI synth_analz_mono synth_increasing synth_subset_iff) |
13922 | 895 |
|
896 |
text{*Two generalizations of @{text analz_insert_eq}*} |
|
897 |
lemma gen_analz_insert_eq [rule_format]: |
|
35566
3c01f5ad1d34
Simplified a couple of proofs and corrected a comment
paulson
parents:
35416
diff
changeset
|
898 |
"X \<in> analz H ==> ALL G. H \<subseteq> G --> analz (insert X G) = analz G" |
13922 | 899 |
by (blast intro: analz_cut analz_insertI analz_mono [THEN [2] rev_subsetD]) |
900 |
||
901 |
lemma synth_analz_insert_eq [rule_format]: |
|
902 |
"X \<in> synth (analz H) |
|
35566
3c01f5ad1d34
Simplified a couple of proofs and corrected a comment
paulson
parents:
35416
diff
changeset
|
903 |
==> ALL G. H \<subseteq> G --> (Key K \<in> analz (insert X G)) = (Key K \<in> analz G)" |
13922 | 904 |
apply (erule synth.induct) |
905 |
apply (simp_all add: gen_analz_insert_eq subset_trans [OF _ subset_insertI]) |
|
906 |
done |
|
907 |
||
908 |
lemma Fake_parts_sing: |
|
34185 | 909 |
"X \<in> synth (analz H) ==> parts{X} \<subseteq> synth (analz H) \<union> parts H" |
910 |
by (metis Fake_parts_insert empty_subsetI insert_mono parts_mono subset_trans) |
|
13922 | 911 |
|
14145
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
14126
diff
changeset
|
912 |
lemmas Fake_parts_sing_imp_Un = Fake_parts_sing [THEN [2] rev_subsetD] |
2e31b8cc8788
ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
14126
diff
changeset
|
913 |
|
11189 | 914 |
method_setup spy_analz = {* |
42474 | 915 |
Scan.succeed (SIMPLE_METHOD' o spy_analz_tac) *} |
11189 | 916 |
"for proving the Fake case when analz is involved" |
1839 | 917 |
|
11264 | 918 |
method_setup atomic_spy_analz = {* |
42474 | 919 |
Scan.succeed (SIMPLE_METHOD' o atomic_spy_analz_tac) *} |
11264 | 920 |
"for debugging spy_analz" |
921 |
||
922 |
method_setup Fake_insert_simp = {* |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51702
diff
changeset
|
923 |
Scan.succeed (SIMPLE_METHOD' o Fake_insert_simp_tac) *} |
11264 | 924 |
"for debugging spy_analz" |
925 |
||
1839 | 926 |
end |