src/HOL/Auth/Shared.ML
author paulson
Thu, 05 Dec 1996 19:03:08 +0100
changeset 2326 6df4488339e4
parent 2320 41289907faed
child 2376 f5c61fd9b9b6
permissions -rw-r--r--
Updating of banner
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2320
41289907faed Moved much common material to Message.ML
paulson
parents: 2284
diff changeset
     1
(*  Title:      HOL/Auth/Shared
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     2
    ID:         $Id$
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     4
    Copyright   1996  University of Cambridge
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     5
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     6
Theory of Shared Keys (common to all symmetric-key protocols)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     7
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     8
Server keys; initial states of agents; new nonces and keys; function "sees" 
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
     9
*)
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    10
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    11
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    12
open Shared;
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    13
1964
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1943
diff changeset
    14
(*Holds because Friend is injective: thus cannot prove for all f*)
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1943
diff changeset
    15
goal thy "(Friend x : Friend``A) = (x:A)";
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1943
diff changeset
    16
by (Auto_tac());
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1943
diff changeset
    17
qed "Friend_image_eq";
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1943
diff changeset
    18
Addsimps [Friend_image_eq];
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1943
diff changeset
    19
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    20
Addsimps [Un_insert_left, Un_insert_right];
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    21
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    22
(*By default only o_apply is built-in.  But in the presence of eta-expansion
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    23
  this means that some terms displayed as (f o g) will be rewritten, and others
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    24
  will not!*)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    25
Addsimps [o_def];
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    26
1943
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    27
(*** Basic properties of shrK and newK ***)
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    28
1943
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    29
(* invKey (shrK A) = shrK A *)
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    30
bind_thm ("invKey_shrK", rewrite_rule [isSymKey_def] isSym_shrK);
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    31
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    32
(* invKey (newK evs) = newK evs *)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    33
bind_thm ("invKey_newK", rewrite_rule [isSymKey_def] isSym_newK);
1943
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    34
Addsimps [invKey_shrK, invKey_newK];
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    35
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    36
1993
77e7ef8e5c3b Addition of enemy_analz_tac and safe_solver
paulson
parents: 1967
diff changeset
    37
(*Injectiveness and freshness of new keys and nonces*)
2264
f298678bd54a Weaking of injectivity assumptions for newK and newN:
paulson
parents: 2160
diff changeset
    38
AddIffs [inj_shrK RS inj_eq];
f298678bd54a Weaking of injectivity assumptions for newK and newN:
paulson
parents: 2160
diff changeset
    39
AddSDs  [newN_length, newK_length];
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    40
2320
41289907faed Moved much common material to Message.ML
paulson
parents: 2284
diff changeset
    41
Addsimps [newK_neq_shrK, newK_neq_shrK RS not_sym];
41289907faed Moved much common material to Message.ML
paulson
parents: 2284
diff changeset
    42
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    43
(** Rewrites should not refer to  initState(Friend i) 
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    44
    -- not in normal form! **)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    45
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    46
goal thy "Key (newK evs) ~: parts (initState lost B)";
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    47
by (agent.induct_tac "B" 1);
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    48
by (Auto_tac ());
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    49
qed "newK_notin_initState";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    50
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    51
goal thy "Nonce (newN evs) ~: parts (initState lost B)";
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    52
by (agent.induct_tac "B" 1);
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    53
by (Auto_tac ());
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    54
qed "newN_notin_initState";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    55
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    56
AddIffs [newK_notin_initState, newN_notin_initState];
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    57
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    58
goalw thy [keysFor_def] "keysFor (parts (initState lost C)) = {}";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    59
by (agent.induct_tac "C" 1);
1993
77e7ef8e5c3b Addition of enemy_analz_tac and safe_solver
paulson
parents: 1967
diff changeset
    60
by (auto_tac (!claset addIs [range_eqI], !simpset));
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    61
qed "keysFor_parts_initState";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    62
Addsimps [keysFor_parts_initState];
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    63
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    64
goalw thy [keysFor_def] "keysFor (Key``E) = {}";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    65
by (Auto_tac ());
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    66
qed "keysFor_image_Key";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    67
Addsimps [keysFor_image_Key];
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    68
1943
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    69
goal thy "shrK A ~: newK``E";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    70
by (agent.induct_tac "A" 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    71
by (Auto_tac ());
1943
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    72
qed "shrK_notin_image_newK";
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    73
Addsimps [shrK_notin_image_newK];
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    74
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    75
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    76
(*** Function "sees" ***)
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    77
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    78
goal thy
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    79
    "!!evs. lost' <= lost ==> sees lost' A evs <= sees lost A evs";
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    80
by (list.induct_tac "evs" 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    81
by (agent.induct_tac "A" 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    82
by (event.induct_tac "a" 2);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    83
by (Auto_tac ());
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    84
qed "sees_mono";
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    85
1964
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1943
diff changeset
    86
(*Agents see their own shared keys!*)
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    87
goal thy "A ~= Spy --> Key (shrK A) : sees lost A evs";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    88
by (list.induct_tac "evs" 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    89
by (agent.induct_tac "A" 1);
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    90
by (Auto_tac ());
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    91
qed_spec_mp "sees_own_shrK";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    92
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    93
(*Spy sees shared keys of lost agents!*)
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
    94
goal thy "!!A. A: lost ==> Key (shrK A) : sees lost Spy evs";
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    95
by (list.induct_tac "evs" 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    96
by (Auto_tac());
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
    97
qed "Spy_sees_lost";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    98
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
    99
AddSIs [sees_own_shrK, Spy_sees_lost];
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   100
2124
9677fdf5fc23 New theorem Crypt_Spy_analz_lost; improvements to spy_analz_tac; ex_strip_tac
paulson
parents: 2109
diff changeset
   101
(*Added for Yahalom/lost_tac*)
2284
80ebd1a213fd Swapped arguments of Crypt (for clarity and because it is conventional)
paulson
parents: 2264
diff changeset
   102
goal thy "!!A. [| Crypt (shrK A) X : analz (sees lost Spy evs);  A: lost |] \
2124
9677fdf5fc23 New theorem Crypt_Spy_analz_lost; improvements to spy_analz_tac; ex_strip_tac
paulson
parents: 2109
diff changeset
   103
\              ==> X : analz (sees lost Spy evs)";
9677fdf5fc23 New theorem Crypt_Spy_analz_lost; improvements to spy_analz_tac; ex_strip_tac
paulson
parents: 2109
diff changeset
   104
by (fast_tac (!claset addSDs [analz.Decrypt] addss (!simpset)) 1);
9677fdf5fc23 New theorem Crypt_Spy_analz_lost; improvements to spy_analz_tac; ex_strip_tac
paulson
parents: 2109
diff changeset
   105
qed "Crypt_Spy_analz_lost";
9677fdf5fc23 New theorem Crypt_Spy_analz_lost; improvements to spy_analz_tac; ex_strip_tac
paulson
parents: 2109
diff changeset
   106
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   107
(** Specialized rewrite rules for (sees lost A (Says...#evs)) **)
2026
0df5a96bf77e Last working version prior to introduction of "lost"
paulson
parents: 2012
diff changeset
   108
2078
b198b3d46fb4 New version of axiom sees1_Says:
paulson
parents: 2072
diff changeset
   109
goal thy "sees lost B (Says A B X # evs) = insert X (sees lost B evs)";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   110
by (Simp_tac 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   111
qed "sees_own";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   112
2078
b198b3d46fb4 New version of axiom sees1_Says:
paulson
parents: 2072
diff changeset
   113
goal thy "!!A. Server ~= B ==> \
b198b3d46fb4 New version of axiom sees1_Says:
paulson
parents: 2072
diff changeset
   114
\          sees lost Server (Says A B X # evs) = sees lost Server evs";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   115
by (Asm_simp_tac 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   116
qed "sees_Server";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   117
2078
b198b3d46fb4 New version of axiom sees1_Says:
paulson
parents: 2072
diff changeset
   118
goal thy "!!A. Friend i ~= B ==> \
b198b3d46fb4 New version of axiom sees1_Says:
paulson
parents: 2072
diff changeset
   119
\          sees lost (Friend i) (Says A B X # evs) = sees lost (Friend i) evs";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   120
by (Asm_simp_tac 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   121
qed "sees_Friend";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   122
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   123
goal thy "sees lost Spy (Says A B X # evs) = insert X (sees lost Spy evs)";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   124
by (Simp_tac 1);
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   125
qed "sees_Spy";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   126
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   127
goal thy "sees lost A (Says A' B X # evs) <= insert X (sees lost A evs)";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   128
by (simp_tac (!simpset setloop split_tac [expand_if]) 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   129
by (Fast_tac 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   130
qed "sees_Says_subset_insert";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   131
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   132
goal thy "sees lost A evs <= sees lost A (Says A' B X # evs)";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   133
by (simp_tac (!simpset setloop split_tac [expand_if]) 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   134
by (Fast_tac 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   135
qed "sees_subset_sees_Says";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   136
2132
aeba09ebd8bc Tidied up a big mess in UN_parts_sees_Says
paulson
parents: 2124
diff changeset
   137
(*Pushing Unions into parts.  One of the agents A is B, and thus sees Y.
2160
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2132
diff changeset
   138
  Once used to prove new_keys_not_seen; now obsolete.*)
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   139
goal thy "(UN A. parts (sees lost A (Says B C Y # evs))) = \
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   140
\         parts {Y} Un (UN A. parts (sees lost A evs))";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   141
by (Step_tac 1);
2132
aeba09ebd8bc Tidied up a big mess in UN_parts_sees_Says
paulson
parents: 2124
diff changeset
   142
by (etac rev_mp 1);     (*split_tac does not work on assumptions*)
aeba09ebd8bc Tidied up a big mess in UN_parts_sees_Says
paulson
parents: 2124
diff changeset
   143
by (ALLGOALS
aeba09ebd8bc Tidied up a big mess in UN_parts_sees_Says
paulson
parents: 2124
diff changeset
   144
    (fast_tac (!claset addss (!simpset addsimps [parts_Un, sees_Cons] 
aeba09ebd8bc Tidied up a big mess in UN_parts_sees_Says
paulson
parents: 2124
diff changeset
   145
                       setloop split_tac [expand_if]))));
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   146
qed "UN_parts_sees_Says";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   147
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   148
goal thy "Says A B X : set_of_list evs --> X : sees lost Spy evs";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   149
by (list.induct_tac "evs" 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   150
by (Auto_tac ());
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   151
qed_spec_mp "Says_imp_sees_Spy";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   152
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
   153
goal thy  
2284
80ebd1a213fd Swapped arguments of Crypt (for clarity and because it is conventional)
paulson
parents: 2264
diff changeset
   154
 "!!evs. [| Says A B (Crypt (shrK C) X) : set_of_list evs;  C : lost |] \
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
   155
\        ==> X : analz (sees lost Spy evs)";
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
   156
by (fast_tac (!claset addSDs [Says_imp_sees_Spy RS analz.Inj]
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
   157
                      addss (!simpset)) 1);
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
   158
qed "Says_Crypt_lost";
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
   159
2072
6ac12b9478d5 Put in the theorem Says_Crypt_not_lost
paulson
parents: 2064
diff changeset
   160
goal thy  
2284
80ebd1a213fd Swapped arguments of Crypt (for clarity and because it is conventional)
paulson
parents: 2264
diff changeset
   161
 "!!evs. [| Says A B (Crypt (shrK C) X) : set_of_list evs;        \
2072
6ac12b9478d5 Put in the theorem Says_Crypt_not_lost
paulson
parents: 2064
diff changeset
   162
\           X ~: analz (sees lost Spy evs) |]                     \
6ac12b9478d5 Put in the theorem Says_Crypt_not_lost
paulson
parents: 2064
diff changeset
   163
\        ==> C ~: lost";
6ac12b9478d5 Put in the theorem Says_Crypt_not_lost
paulson
parents: 2064
diff changeset
   164
by (fast_tac (!claset addSDs [Says_imp_sees_Spy RS analz.Inj]
6ac12b9478d5 Put in the theorem Says_Crypt_not_lost
paulson
parents: 2064
diff changeset
   165
                      addss (!simpset)) 1);
6ac12b9478d5 Put in the theorem Says_Crypt_not_lost
paulson
parents: 2064
diff changeset
   166
qed "Says_Crypt_not_lost";
6ac12b9478d5 Put in the theorem Says_Crypt_not_lost
paulson
parents: 2064
diff changeset
   167
2320
41289907faed Moved much common material to Message.ML
paulson
parents: 2284
diff changeset
   168
(*NEEDED??*)
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   169
goal thy "initState lost C <= Key `` range shrK";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   170
by (agent.induct_tac "C" 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   171
by (Auto_tac ());
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   172
qed "initState_subset";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   173
2320
41289907faed Moved much common material to Message.ML
paulson
parents: 2284
diff changeset
   174
(*NEEDED??*)
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   175
goal thy "X : sees lost C evs --> \
2078
b198b3d46fb4 New version of axiom sees1_Says:
paulson
parents: 2072
diff changeset
   176
\          (EX A B. Says A B X : set_of_list evs) | (EX A. X = Key (shrK A))";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   177
by (list.induct_tac "evs" 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   178
by (ALLGOALS Asm_simp_tac);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   179
by (fast_tac (!claset addDs [impOfSubs initState_subset]) 1);
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   180
by (rtac conjI 1);
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   181
by (Fast_tac 2);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   182
by (event.induct_tac "a" 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   183
by (ALLGOALS (asm_simp_tac (!simpset addsimps [mem_if])));
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   184
by (ALLGOALS Fast_tac);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   185
qed_spec_mp "seesD";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   186
2160
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2132
diff changeset
   187
Addsimps [sees_own, sees_Server, sees_Friend, sees_Spy];
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   188
Delsimps [sees_Cons];   (**** NOTE REMOVAL -- laws above are cleaner ****)
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   189
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   190
2049
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   191
(** Power of the Spy **)
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   192
2049
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   193
(*The Spy can see more than anybody else, except for their initial state*)
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   194
goal thy "sees lost A evs <= initState lost A Un sees lost Spy evs";
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   195
by (list.induct_tac "evs" 1);
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   196
by (event.induct_tac "a" 2);
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   197
by (ALLGOALS (fast_tac (!claset addDs [sees_Says_subset_insert RS subsetD] 
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   198
                                addss (!simpset))));
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   199
qed "sees_agent_subset_sees_Spy";
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   200
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   201
(*The Spy can see more than anybody else who's lost their key!*)
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   202
goal thy "A: lost --> A ~= Server --> sees lost A evs <= sees lost Spy evs";
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   203
by (list.induct_tac "evs" 1);
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   204
by (event.induct_tac "a" 2);
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   205
by (agent.induct_tac "A" 1);
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   206
by (auto_tac (!claset addDs [sees_Says_subset_insert RS subsetD], (!simpset)));
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   207
qed_spec_mp "sees_lost_agent_subset_sees_Spy";
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   208
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   209
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   210
(** Simplifying   parts (insert X (sees lost A evs))
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   211
      = parts {X} Un parts (sees lost A evs) -- since general case loops*)
2012
1b234f1fd9c7 Removal of the Notes constructor
paulson
parents: 2000
diff changeset
   212
1b234f1fd9c7 Removal of the Notes constructor
paulson
parents: 2000
diff changeset
   213
val parts_insert_sees = 
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   214
    parts_insert |> read_instantiate_sg (sign_of thy)
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   215
                                        [("H", "sees lost A evs")]
2012
1b234f1fd9c7 Removal of the Notes constructor
paulson
parents: 2000
diff changeset
   216
                 |> standard;
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   217
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   218
2049
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   219
(*** Specialized rewriting for analz_insert_Key_newK ***)
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   220
2320
41289907faed Moved much common material to Message.ML
paulson
parents: 2284
diff changeset
   221
(*Push newK applications in, allowing other keys to be pulled out*)
41289907faed Moved much common material to Message.ML
paulson
parents: 2284
diff changeset
   222
val pushKey_newK = insComm thy "Key (newK ?evs)"  "Key (shrK ?C)";
41289907faed Moved much common material to Message.ML
paulson
parents: 2284
diff changeset
   223
2049
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   224
goal thy "!!K. newK evs = invKey K ==> newK evs = K";
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   225
by (rtac (invKey_eq RS iffD1) 1);
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   226
by (Simp_tac 1);
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   227
val newK_invKey = result();
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   228
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   229
AddSDs [newK_invKey];
2124
9677fdf5fc23 New theorem Crypt_Spy_analz_lost; improvements to spy_analz_tac; ex_strip_tac
paulson
parents: 2109
diff changeset
   230
AddSDs [sym RS newK_invKey];
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   231
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   232
Delsimps [image_insert];
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   233
Addsimps [image_insert RS sym];
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   234
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   235
Delsimps [image_Un];
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   236
Addsimps [image_Un RS sym];
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   237
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   238
goal thy "insert (Key (newK x)) H = Key `` (newK``{x}) Un H";
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   239
by (Fast_tac 1);
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   240
qed "insert_Key_singleton";
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   241
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   242
goal thy "insert (Key (f x)) (Key``(f``E) Un C) = \
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   243
\         Key `` (f `` (insert x E)) Un C";
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   244
by (Fast_tac 1);
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   245
qed "insert_Key_image";
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   246
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   247
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   248
(*Lemma for the trivial direction of the if-and-only-if*)
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   249
goal thy  
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   250
 "!!evs. (Key K : analz (Key``nE Un H)) --> (K : nE | Key K : analz H)  ==> \
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   251
\        (Key K : analz (Key``nE Un H)) = (K : nE | Key K : analz H)";
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   252
by (fast_tac (!claset addSEs [impOfSubs analz_mono]) 1);
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   253
qed "analz_image_newK_lemma";