src/HOL/Auth/OtwayRees.ML
author paulson
Thu, 28 Nov 1996 10:41:14 +0100
changeset 2264 f298678bd54a
parent 2214 f869dc885841
child 2284 80ebd1a213fd
permissions -rw-r--r--
Weaking of injectivity assumptions for newK and newN: they are no longer assumed injective over all traces, merely over the length of a trace
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
     1
(*  Title:      HOL/Auth/OtwayRees
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
     2
    ID:         $Id$
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
     4
    Copyright   1996  University of Cambridge
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
     5
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
     6
Inductive relation "otway" for the Otway-Rees protocol.
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
     7
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
     8
Version that encrypts Nonce NB
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
     9
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    10
From page 244 of
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    11
  Burrows, Abadi and Needham.  A Logic of Authentication.
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    12
  Proc. Royal Soc. 426 (1989)
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    13
*)
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    14
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    15
open OtwayRees;
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    16
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    17
proof_timing:=true;
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    18
HOL_quantifiers := false;
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
    19
Pretty.setdepth 15;
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    20
1996
33c42cae3dd0 Uses the improved enemy_analz_tac of Shared.ML, with simpler proofs
paulson
parents: 1967
diff changeset
    21
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
    22
(*Weak liveness: there are traces that reach the end*)
1996
33c42cae3dd0 Uses the improved enemy_analz_tac of Shared.ML, with simpler proofs
paulson
parents: 1967
diff changeset
    23
goal thy 
33c42cae3dd0 Uses the improved enemy_analz_tac of Shared.ML, with simpler proofs
paulson
parents: 1967
diff changeset
    24
 "!!A B. [| A ~= B; A ~= Server; B ~= Server |]   \
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    25
\        ==> EX K. EX NA. EX evs: otway lost.          \
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
    26
\               Says B A {|Nonce NA, Crypt {|Nonce NA, Key K|} (shrK A)|} \
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
    27
\                 : set_of_list evs";
1996
33c42cae3dd0 Uses the improved enemy_analz_tac of Shared.ML, with simpler proofs
paulson
parents: 1967
diff changeset
    28
by (REPEAT (resolve_tac [exI,bexI] 1));
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    29
by (rtac (otway.Nil RS otway.OR1 RS otway.OR2 RS otway.OR3 RS otway.OR4) 2);
1996
33c42cae3dd0 Uses the improved enemy_analz_tac of Shared.ML, with simpler proofs
paulson
parents: 1967
diff changeset
    30
by (ALLGOALS (simp_tac (!simpset setsolver safe_solver)));
33c42cae3dd0 Uses the improved enemy_analz_tac of Shared.ML, with simpler proofs
paulson
parents: 1967
diff changeset
    31
by (REPEAT_FIRST (resolve_tac [refl, conjI]));
2104
f5c9a91e4b50 Replaced excluded_middle_tac by case_tac; tidied proofs
paulson
parents: 2071
diff changeset
    32
by (REPEAT_FIRST (fast_tac (!claset addss (!simpset setsolver safe_solver))));
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
    33
result();
1996
33c42cae3dd0 Uses the improved enemy_analz_tac of Shared.ML, with simpler proofs
paulson
parents: 1967
diff changeset
    34
33c42cae3dd0 Uses the improved enemy_analz_tac of Shared.ML, with simpler proofs
paulson
parents: 1967
diff changeset
    35
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    36
(**** Inductive proofs about otway ****)
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    37
2104
f5c9a91e4b50 Replaced excluded_middle_tac by case_tac; tidied proofs
paulson
parents: 2071
diff changeset
    38
(*Monotonicity*)
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    39
goal thy "!!evs. lost' <= lost ==> otway lost' <= otway lost";
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    40
by (rtac subsetI 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    41
by (etac otway.induct 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    42
by (REPEAT_FIRST
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    43
    (best_tac (!claset addIs (impOfSubs (sees_mono RS analz_mono RS synth_mono)
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    44
                              :: otway.intrs))));
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    45
qed "otway_mono";
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    46
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    47
(*Nobody sends themselves messages*)
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    48
goal thy "!!evs. evs : otway lost ==> ALL A X. Says A A X ~: set_of_list evs";
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    49
by (etac otway.induct 1);
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    50
by (Auto_tac());
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    51
qed_spec_mp "not_Says_to_self";
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    52
Addsimps [not_Says_to_self];
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    53
AddSEs   [not_Says_to_self RSN (2, rev_notE)];
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    54
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    55
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    56
(** For reasoning about the encrypted portion of messages **)
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    57
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
    58
goal thy "!!evs. Says A' B {|N, Agent A, Agent B, X|} : set_of_list evs \
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
    59
\                ==> X : analz (sees lost Spy evs)";
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    60
by (fast_tac (!claset addSDs [Says_imp_sees_Spy RS analz.Inj]) 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    61
qed "OR2_analz_sees_Spy";
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    62
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
    63
goal thy "!!evs. Says S B {|N, X, X'|} : set_of_list evs \
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
    64
\                ==> X : analz (sees lost Spy evs)";
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    65
by (fast_tac (!claset addSDs [Says_imp_sees_Spy RS analz.Inj]) 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    66
qed "OR4_analz_sees_Spy";
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    67
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
    68
goal thy "!!evs. Says Server B {|NA, X, Crypt {|NB,K|} K'|} : set_of_list evs \
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
    69
\                 ==> K : parts (sees lost Spy evs)";
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    70
by (fast_tac (!claset addSEs partsEs
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    71
                      addSDs [Says_imp_sees_Spy RS parts.Inj]) 1);
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
    72
qed "Oops_parts_sees_Spy";
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    73
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    74
(*OR2_analz... and OR4_analz... let us treat those cases using the same 
1964
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1945
diff changeset
    75
  argument as for the Fake case.  This is possible for most, but not all,
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1945
diff changeset
    76
  proofs: Fake does not invent new nonces (as in OR2), and of course Fake
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    77
  messages originate from the Spy. *)
1964
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1945
diff changeset
    78
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    79
bind_thm ("OR2_parts_sees_Spy",
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    80
          OR2_analz_sees_Spy RS (impOfSubs analz_subset_parts));
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    81
bind_thm ("OR4_parts_sees_Spy",
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    82
          OR4_analz_sees_Spy RS (impOfSubs analz_subset_parts));
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    83
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    84
(*We instantiate the variable to "lost".  Leaving it as a Var makes proofs
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    85
  harder to complete, since simplification does less for us.*)
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
    86
val parts_Fake_tac = 
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    87
    let val tac = forw_inst_tac [("lost","lost")] 
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    88
    in  tac OR2_parts_sees_Spy 4 THEN 
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    89
        tac OR4_parts_sees_Spy 6 THEN
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
    90
        tac Oops_parts_sees_Spy 7
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    91
    end;
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    92
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
    93
(*For proving the easier theorems about X ~: parts (sees lost Spy evs) *)
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
    94
fun parts_induct_tac i = SELECT_GOAL
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
    95
    (DETERM (etac otway.induct 1 THEN parts_Fake_tac THEN
2171
91b4161a28e5 A bit of tidying up
paulson
parents: 2166
diff changeset
    96
             (*Fake message*)
91b4161a28e5 A bit of tidying up
paulson
parents: 2166
diff changeset
    97
             TRY (best_tac (!claset addDs [impOfSubs analz_subset_parts,
91b4161a28e5 A bit of tidying up
paulson
parents: 2166
diff changeset
    98
                                           impOfSubs Fake_parts_insert]
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
    99
                                    addss (!simpset)) 2)) THEN
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   100
     (*Base case*)
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   101
     fast_tac (!claset addss (!simpset)) 1 THEN
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   102
     ALLGOALS Asm_simp_tac) i;
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   103
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   104
(** Theorems of the form X ~: parts (sees lost Spy evs) imply that NOBODY
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   105
    sends messages containing X! **)
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   106
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   107
(*Spy never sees another agent's shared key! (unless it's lost at start)*)
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   108
goal thy 
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   109
 "!!evs. evs : otway lost \
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   110
\        ==> (Key (shrK A) : parts (sees lost Spy evs)) = (A : lost)";
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   111
by (parts_induct_tac 1);
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   112
by (Auto_tac());
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   113
qed "Spy_see_shrK";
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   114
Addsimps [Spy_see_shrK];
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   115
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   116
goal thy 
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   117
 "!!evs. evs : otway lost \
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   118
\        ==> (Key (shrK A) : analz (sees lost Spy evs)) = (A : lost)";
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   119
by (auto_tac(!claset addDs [impOfSubs analz_subset_parts], !simpset));
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   120
qed "Spy_analz_shrK";
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   121
Addsimps [Spy_analz_shrK];
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   122
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   123
goal thy  "!!A. [| Key (shrK A) : parts (sees lost Spy evs);       \
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   124
\                  evs : otway lost |] ==> A:lost";
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   125
by (fast_tac (!claset addDs [Spy_see_shrK]) 1);
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   126
qed "Spy_see_shrK_D";
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   127
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   128
bind_thm ("Spy_analz_shrK_D", analz_subset_parts RS subsetD RS Spy_see_shrK_D);
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   129
AddSDs [Spy_see_shrK_D, Spy_analz_shrK_D];
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   130
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   131
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   132
(*** Future keys can't be seen or used! ***)
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   133
2160
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   134
(*Nobody can have SEEN keys that will be generated in the future. *)
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   135
goal thy "!!evs. evs : otway lost ==> \
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   136
\                length evs <= length evs' --> \
2160
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   137
\                Key (newK evs') ~: parts (sees lost Spy evs)";
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   138
by (parts_induct_tac 1);
2264
f298678bd54a Weaking of injectivity assumptions for newK and newN:
paulson
parents: 2214
diff changeset
   139
by (REPEAT_FIRST (best_tac (!claset addEs [leD RS notE]
f298678bd54a Weaking of injectivity assumptions for newK and newN:
paulson
parents: 2214
diff changeset
   140
				    addDs [impOfSubs analz_subset_parts,
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   141
                                           impOfSubs parts_insert_subset_Un,
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   142
                                           Suc_leD]
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   143
                                    addss (!simpset))));
2160
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   144
qed_spec_mp "new_keys_not_seen";
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   145
Addsimps [new_keys_not_seen];
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   146
2160
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   147
(*Variant: old messages must contain old keys!*)
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   148
goal thy 
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   149
 "!!evs. [| Says A B X : set_of_list evs;  \
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   150
\           Key (newK evt) : parts {X};    \
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   151
\           evs : otway lost                 \
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   152
\        |] ==> length evt < length evs";
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   153
by (rtac ccontr 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   154
by (dtac leI 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   155
by (fast_tac (!claset addSDs [new_keys_not_seen, Says_imp_sees_Spy]
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   156
                      addIs  [impOfSubs parts_mono]) 1);
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   157
qed "Says_imp_old_keys";
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   158
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   159
2160
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   160
(*** Future nonces can't be seen or used! ***)
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   161
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   162
goal thy "!!evs. evs : otway lost ==> \
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   163
\                length evs <= length evt --> \
2160
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   164
\                Nonce (newN evt) ~: parts (sees lost Spy evs)";
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   165
by (parts_induct_tac 1);
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   166
by (REPEAT_FIRST (fast_tac (!claset 
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   167
                              addSEs partsEs
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   168
                              addSDs  [Says_imp_sees_Spy RS parts.Inj]
2264
f298678bd54a Weaking of injectivity assumptions for newK and newN:
paulson
parents: 2214
diff changeset
   169
                              addEs [leD RS notE]
f298678bd54a Weaking of injectivity assumptions for newK and newN:
paulson
parents: 2214
diff changeset
   170
			      addDs  [impOfSubs analz_subset_parts,
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   171
                                      impOfSubs parts_insert_subset_Un,
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   172
                                      Suc_leD]
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   173
                              addss (!simpset))));
2160
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   174
qed_spec_mp "new_nonces_not_seen";
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   175
Addsimps [new_nonces_not_seen];
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   176
2160
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   177
(*Variant: old messages must contain old nonces!*)
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   178
goal thy "!!evs. [| Says A B X : set_of_list evs;    \
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   179
\                   Nonce (newN evt) : parts {X};    \
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   180
\                   evs : otway lost                 \
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   181
\                |] ==> length evt < length evs";
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   182
by (rtac ccontr 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   183
by (dtac leI 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   184
by (fast_tac (!claset addSDs [new_nonces_not_seen, Says_imp_sees_Spy]
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   185
                      addIs  [impOfSubs parts_mono]) 1);
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   186
qed "Says_imp_old_nonces";
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   187
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   188
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   189
(*Nobody can have USED keys that will be generated in the future.
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   190
  ...very like new_keys_not_seen*)
2160
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   191
goal thy "!!evs. evs : otway lost ==>          \
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   192
\                length evs <= length evs' --> \
2160
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   193
\                newK evs' ~: keysFor (parts (sees lost Spy evs))";
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   194
by (parts_induct_tac 1);
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   195
(*OR1 and OR3*)
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   196
by (EVERY (map (fast_tac (!claset addDs [Suc_leD] addss (!simpset))) [4,2]));
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   197
(*Fake, OR2, OR4: these messages send unknown (X) components*)
2104
f5c9a91e4b50 Replaced excluded_middle_tac by case_tac; tidied proofs
paulson
parents: 2071
diff changeset
   198
by (REPEAT
f5c9a91e4b50 Replaced excluded_middle_tac by case_tac; tidied proofs
paulson
parents: 2071
diff changeset
   199
    (best_tac
1996
33c42cae3dd0 Uses the improved enemy_analz_tac of Shared.ML, with simpler proofs
paulson
parents: 1967
diff changeset
   200
      (!claset addDs [impOfSubs (analz_subset_parts RS keysFor_mono),
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   201
                      impOfSubs (parts_insert_subset_Un RS keysFor_mono),
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   202
                      Suc_leD]
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   203
               addEs [new_keys_not_seen RS not_parts_not_analz RSN(2,rev_notE)]
2104
f5c9a91e4b50 Replaced excluded_middle_tac by case_tac; tidied proofs
paulson
parents: 2071
diff changeset
   204
               addss (!simpset)) 1));
2160
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   205
qed_spec_mp "new_keys_not_used";
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   206
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   207
bind_thm ("new_keys_not_analzd",
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   208
          [analz_subset_parts RS keysFor_mono,
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   209
           new_keys_not_used] MRS contra_subsetD);
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   210
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   211
Addsimps [new_keys_not_used, new_keys_not_analzd];
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   212
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   213
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   214
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   215
(*** Proofs involving analz ***)
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   216
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   217
(*Describes the form of K and NA when the Server sends this message.  Also
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   218
  for Oops case.*)
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   219
goal thy 
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   220
 "!!evs. [| Says Server B \
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   221
\            {|NA, X, Crypt {|NB, K|} (shrK B)|} : set_of_list evs;  \
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   222
\           evs : otway lost |]                                   \
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   223
\        ==> (EX evt: otway lost. K = Key(newK evt)) &            \
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   224
\            (EX i. NA = Nonce i) & (EX j. NB = Nonce j)";
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   225
by (etac rev_mp 1);
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   226
by (etac otway.induct 1);
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   227
by (ALLGOALS (fast_tac (!claset addss (!simpset))));
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   228
qed "Says_Server_message_form";
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   229
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   230
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   231
(*For proofs involving analz.  We again instantiate the variable to "lost".*)
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   232
val analz_Fake_tac = 
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   233
    dres_inst_tac [("lost","lost")] OR2_analz_sees_Spy 4 THEN 
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   234
    dres_inst_tac [("lost","lost")] OR4_analz_sees_Spy 6 THEN
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   235
    forw_inst_tac [("lost","lost")] Says_Server_message_form 7 THEN
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   236
    assume_tac 7 THEN Full_simp_tac 7 THEN
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   237
    REPEAT ((eresolve_tac [bexE, exE, conjE] ORELSE' hyp_subst_tac) 7);
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   238
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   239
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   240
(****
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   241
 The following is to prove theorems of the form
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   242
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   243
          Key K : analz (insert (Key (newK evt)) (sees lost Spy evs)) ==>
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   244
          Key K : analz (sees lost Spy evs)
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   245
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   246
 A more general formula must be proved inductively.
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   247
****)
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   248
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   249
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   250
(** Session keys are not used to encrypt other session keys **)
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   251
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   252
(*The equality makes the induction hypothesis easier to apply*)
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   253
goal thy  
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   254
 "!!evs. evs : otway lost ==> \
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   255
\  ALL K E. (Key K : analz (Key``(newK``E) Un (sees lost Spy evs))) = \
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   256
\           (K : newK``E | Key K : analz (sees lost Spy evs))";
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   257
by (etac otway.induct 1);
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   258
by analz_Fake_tac;
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   259
by (REPEAT_FIRST (ares_tac [allI, analz_image_newK_lemma]));
2160
ad4382e546fc Simplified new_keys_not_seen, etc.: replaced the
paulson
parents: 2135
diff changeset
   260
by (ALLGOALS (*Takes 14 secs*)
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   261
    (asm_simp_tac 
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   262
     (!simpset addsimps ([insert_Key_singleton, insert_Key_image, pushKey_newK]
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   263
                         @ pushes)
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   264
               setloop split_tac [expand_if])));
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   265
(*OR4, OR2, Fake*) 
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   266
by (EVERY (map spy_analz_tac [5,3,2]));
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   267
(*Oops, OR3, Base*)
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   268
by (REPEAT (fast_tac (!claset addIs [image_eqI] addss (!simpset)) 1));
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   269
qed_spec_mp "analz_image_newK";
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   270
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   271
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   272
goal thy
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   273
 "!!evs. evs : otway lost ==>                               \
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   274
\        Key K : analz (insert (Key (newK evt)) (sees lost Spy evs)) = \
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   275
\        (K = newK evt | Key K : analz (sees lost Spy evs))";
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   276
by (asm_simp_tac (HOL_ss addsimps [pushKey_newK, analz_image_newK, 
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   277
                                   insert_Key_singleton]) 1);
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   278
by (Fast_tac 1);
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   279
qed "analz_insert_Key_newK";
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   280
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   281
2026
0df5a96bf77e Last working version prior to introduction of "lost"
paulson
parents: 2014
diff changeset
   282
(*** The Key K uniquely identifies the Server's  message. **)
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   283
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   284
goal thy 
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   285
 "!!evs. evs : otway lost ==>                                                 \
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   286
\   EX B' NA' NB' X'. ALL B NA NB X.                                          \
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   287
\     Says Server B {|NA, X, Crypt {|NB, K|} (shrK B)|} : set_of_list evs --> \
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   288
\     B=B' & NA=NA' & NB=NB' & X=X'";
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   289
by (etac otway.induct 1);
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   290
by (ALLGOALS (asm_simp_tac (!simpset addsimps [all_conj_distrib])));
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   291
by (Step_tac 1);
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   292
(*Remaining cases: OR3 and OR4*)
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   293
by (ex_strip_tac 2);
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   294
by (Fast_tac 2);
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   295
by (expand_case_tac "K = ?y" 1);
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   296
by (REPEAT (ares_tac [refl,exI,impI,conjI] 2));
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   297
(*...we assume X is a very new message, and handle this case by contradiction*)
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   298
by (fast_tac (!claset addEs [Says_imp_old_keys RS less_irrefl]
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   299
                      delrules [conjI]    (*prevent split-up into 4 subgoals*)
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   300
                      addss (!simpset addsimps [parts_insertI])) 1);
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   301
val lemma = result();
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   302
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   303
goal thy 
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   304
 "!!evs. [| Says Server B {|NA, X, Crypt {|NB, K|} (shrK B)|}      \
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   305
\            : set_of_list evs;                                    \ 
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   306
\           Says Server B' {|NA',X',Crypt {|NB',K|} (shrK B')|}    \
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   307
\            : set_of_list evs;                                    \
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   308
\           evs : otway lost |] ==> X=X' & B=B' & NA=NA' & NB=NB'";
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   309
by (dtac lemma 1);
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   310
by (REPEAT (etac exE 1));
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   311
(*Duplicate the assumption*)
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   312
by (forw_inst_tac [("psi", "ALL C.?P(C)")] asm_rl 1);
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   313
by (fast_tac (!claset addSDs [spec]) 1);
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   314
qed "unique_session_keys";
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   315
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   316
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   317
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   318
(**** Authenticity properties relating to NA ****)
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   319
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   320
(*Only OR1 can have caused such a part of a message to appear.*)
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   321
goal thy 
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   322
 "!!evs. [| A ~: lost;  evs : otway lost |]                        \
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   323
\        ==> Crypt {|NA, Agent A, Agent B|} (shrK A)               \
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   324
\             : parts (sees lost Spy evs) -->                      \
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   325
\            Says A B {|NA, Agent A, Agent B,                      \
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   326
\                       Crypt {|NA, Agent A, Agent B|} (shrK A)|}  \
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   327
\             : set_of_list evs";
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   328
by (parts_induct_tac 1);
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   329
qed_spec_mp "Crypt_imp_OR1";
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   330
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   331
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   332
(** The Nonce NA uniquely identifies A's message. **)
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   333
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   334
goal thy 
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   335
 "!!evs. [| evs : otway lost; A ~: lost |]               \
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   336
\ ==> EX B'. ALL B.    \
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   337
\        Crypt {|NA, Agent A, Agent B|} (shrK A) : parts (sees lost Spy evs) \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   338
\        --> B = B'";
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   339
by (parts_induct_tac 1);
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   340
by (simp_tac (!simpset addsimps [all_conj_distrib]) 1); 
2026
0df5a96bf77e Last working version prior to introduction of "lost"
paulson
parents: 2014
diff changeset
   341
(*OR1: creation of new Nonce.  Move assertion into global context*)
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   342
by (expand_case_tac "NA = ?y" 1);
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   343
by (best_tac (!claset addSEs partsEs
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   344
                      addEs  [new_nonces_not_seen RSN(2,rev_notE)]) 1);
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   345
val lemma = result();
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   346
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   347
goal thy 
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   348
 "!!evs.[| Crypt {|NA, Agent A, Agent B|} (shrK A): parts(sees lost Spy evs); \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   349
\          Crypt {|NA, Agent A, Agent C|} (shrK A): parts(sees lost Spy evs); \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   350
\          evs : otway lost;  A ~: lost |]                                    \
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   351
\        ==> B = C";
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   352
by (dtac lemma 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   353
by (assume_tac 1);
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   354
by (etac exE 1);
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   355
(*Duplicate the assumption*)
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   356
by (forw_inst_tac [("psi", "ALL C.?P(C)")] asm_rl 1);
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   357
by (fast_tac (!claset addSDs [spec]) 1);
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   358
qed "unique_NA";
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   359
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   360
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   361
val nonce_not_seen_now = le_refl RSN (2, new_nonces_not_seen) RSN (2,rev_notE);
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   362
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   363
(*It is impossible to re-use a nonce in both OR1 and OR2.  This holds because
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   364
  OR2 encrypts Nonce NB.  It prevents the attack that can occur in the
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   365
  over-simplified version of this protocol: see OtwayRees_Bad.*)
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   366
goal thy 
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   367
 "!!evs. [| A ~: lost;  evs : otway lost |]                            \
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   368
\        ==> Crypt {|NA, Agent A, Agent B|} (shrK A)             \
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   369
\             : parts (sees lost Spy evs) -->                       \
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   370
\            Crypt {|NA', NA, Agent A', Agent A|} (shrK A)       \
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   371
\             ~: parts (sees lost Spy evs)";
2071
0debdc018d26 Put in a simpler and *much* faster proof of no_nonce_OR1_OR2
paulson
parents: 2064
diff changeset
   372
by (parts_induct_tac 1);
0debdc018d26 Put in a simpler and *much* faster proof of no_nonce_OR1_OR2
paulson
parents: 2064
diff changeset
   373
by (REPEAT (fast_tac (!claset addSEs (partsEs@[nonce_not_seen_now])
2026
0df5a96bf77e Last working version prior to introduction of "lost"
paulson
parents: 2014
diff changeset
   374
                              addSDs  [impOfSubs parts_insert_subset_Un]
2071
0debdc018d26 Put in a simpler and *much* faster proof of no_nonce_OR1_OR2
paulson
parents: 2064
diff changeset
   375
                              addss (!simpset)) 1));
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   376
qed_spec_mp"no_nonce_OR1_OR2";
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   377
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   378
2053
6c0594bfa726 Greatly simplified the proof of A_can_trust
paulson
parents: 2048
diff changeset
   379
(*Crucial property: If the encrypted message appears, and A has used NA
6c0594bfa726 Greatly simplified the proof of A_can_trust
paulson
parents: 2048
diff changeset
   380
  to start a run, then it originated with the Server!*)
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   381
goal thy 
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   382
 "!!evs. [| A ~: lost;  A ~= Spy;  evs : otway lost |]                 \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   383
\    ==> Crypt {|NA, Key K|} (shrK A) : parts (sees lost Spy evs)      \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   384
\        --> Says A B {|NA, Agent A, Agent B,                          \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   385
\                       Crypt {|NA, Agent A, Agent B|} (shrK A)|}      \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   386
\             : set_of_list evs -->                                    \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   387
\            (EX NB. Says Server B                                     \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   388
\                 {|NA,                                                \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   389
\                   Crypt {|NA, Key K|} (shrK A),                      \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   390
\                   Crypt {|NB, Key K|} (shrK B)|}                     \
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   391
\                   : set_of_list evs)";
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   392
by (parts_induct_tac 1);
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   393
(*OR1: it cannot be a new Nonce, contradiction.*)
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   394
by (fast_tac (!claset addSIs [parts_insertI]
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   395
                      addSEs partsEs
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   396
                      addEs [Says_imp_old_nonces RS less_irrefl]
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   397
                      addss (!simpset)) 1);
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   398
(*OR3 and OR4*) 
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   399
(*OR4*)
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   400
by (REPEAT (Safe_step_tac 2));
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   401
by (REPEAT (best_tac (!claset addSDs [parts_cut]) 3));
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   402
by (fast_tac (!claset addSIs [Crypt_imp_OR1]
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   403
                      addEs  partsEs
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   404
                      addDs [Says_imp_sees_Spy RS parts.Inj]) 2);
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   405
(*OR3*)  (** LEVEL 5 **)
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   406
by (asm_simp_tac (!simpset addsimps [ex_disj_distrib]) 1);
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   407
by (step_tac (!claset delrules [disjCI, impCE]) 1);
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   408
by (fast_tac (!claset addSEs [MPair_parts]
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   409
                      addSDs [Says_imp_sees_Spy RS parts.Inj]
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   410
                      addEs  [no_nonce_OR1_OR2 RSN (2, rev_notE)]
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   411
                      delrules [conjI] (*stop split-up into 4 subgoals*)) 2);
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   412
by (fast_tac (!claset addSDs [Says_imp_sees_Spy RS parts.Inj]
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   413
                      addSEs [MPair_parts]
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   414
                      addEs  [unique_NA]) 1);
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   415
qed_spec_mp "NA_Crypt_imp_Server_msg";
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   416
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   417
2053
6c0594bfa726 Greatly simplified the proof of A_can_trust
paulson
parents: 2048
diff changeset
   418
(*Corollary: if A receives B's OR4 message and the nonce NA agrees
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   419
  then the key really did come from the Server!  CANNOT prove this of the
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   420
  bad form of this protocol, even though we can prove
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   421
  Spy_not_see_encrypted_key*)
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   422
goal thy 
2053
6c0594bfa726 Greatly simplified the proof of A_can_trust
paulson
parents: 2048
diff changeset
   423
 "!!evs. [| Says B' A {|NA, Crypt {|NA, Key K|} (shrK A)|}         \
6c0594bfa726 Greatly simplified the proof of A_can_trust
paulson
parents: 2048
diff changeset
   424
\            : set_of_list evs;                                    \
6c0594bfa726 Greatly simplified the proof of A_can_trust
paulson
parents: 2048
diff changeset
   425
\           Says A B {|NA, Agent A, Agent B,                       \
6c0594bfa726 Greatly simplified the proof of A_can_trust
paulson
parents: 2048
diff changeset
   426
\                      Crypt {|NA, Agent A, Agent B|} (shrK A)|}   \
6c0594bfa726 Greatly simplified the proof of A_can_trust
paulson
parents: 2048
diff changeset
   427
\            : set_of_list evs;                                    \
6c0594bfa726 Greatly simplified the proof of A_can_trust
paulson
parents: 2048
diff changeset
   428
\           A ~: lost;  A ~= Spy;  evs : otway lost |]             \
6c0594bfa726 Greatly simplified the proof of A_can_trust
paulson
parents: 2048
diff changeset
   429
\        ==> EX NB. Says Server B                                  \
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   430
\                     {|NA,                                        \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   431
\                       Crypt {|NA, Key K|} (shrK A),              \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   432
\                       Crypt {|NB, Key K|} (shrK B)|}             \
2053
6c0594bfa726 Greatly simplified the proof of A_can_trust
paulson
parents: 2048
diff changeset
   433
\                       : set_of_list evs";
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   434
by (fast_tac (!claset addSIs [NA_Crypt_imp_Server_msg]
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   435
                      addEs  partsEs
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   436
                      addDs  [Says_imp_sees_Spy RS parts.Inj]) 1);
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   437
qed "A_trust_OR4";
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   438
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   439
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   440
(** Crucial secrecy property: Spy does not see the keys sent in msg OR3
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   441
    Does not in itself guarantee security: an attack could violate 
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   442
    the premises, e.g. by having A=Spy **)
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   443
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   444
goal thy 
2166
d276a806cc10 Tidying up: removing redundant assumptions, etc.
paulson
parents: 2160
diff changeset
   445
 "!!evs. [| A ~: lost;  B ~: lost;  evs : otway lost |]                    \
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   446
\        ==> Says Server B                                                 \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   447
\              {|NA, Crypt {|NA, Key K|} (shrK A),                         \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   448
\                Crypt {|NB, Key K|} (shrK B)|} : set_of_list evs -->      \
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   449
\            Says B Spy {|NA, NB, Key K|} ~: set_of_list evs -->           \
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   450
\            Key K ~: analz (sees lost Spy evs)";
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   451
by (etac otway.induct 1);
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   452
by analz_Fake_tac;
1964
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1945
diff changeset
   453
by (ALLGOALS
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   454
    (asm_full_simp_tac 
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   455
     (!simpset addsimps ([analz_subset_parts RS contra_subsetD,
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   456
                          analz_insert_Key_newK] @ pushes)
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   457
               setloop split_tac [expand_if])));
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   458
(*OR3*)
2166
d276a806cc10 Tidying up: removing redundant assumptions, etc.
paulson
parents: 2160
diff changeset
   459
by (fast_tac (!claset addEs [Says_imp_old_keys RS less_irrefl]
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   460
                      addss (!simpset addsimps [parts_insert2])) 3);
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   461
(*OR4, OR2, Fake*) 
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   462
by (REPEAT_FIRST (resolve_tac [conjI, impI] ORELSE' spy_analz_tac));
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   463
(*Oops*) (** LEVEL 5 **)
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   464
by (fast_tac (!claset delrules [disjE]
2171
91b4161a28e5 A bit of tidying up
paulson
parents: 2166
diff changeset
   465
                      addDs [unique_session_keys] addss (!simpset)) 1);
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   466
val lemma = result() RS mp RS mp RSN(2,rev_notE);
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   467
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   468
goal thy 
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   469
 "!!evs. [| Says Server B \
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   470
\            {|NA, Crypt {|NA, K|} (shrK A),                             \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   471
\                  Crypt {|NB, K|} (shrK B)|} : set_of_list evs;         \
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   472
\           Says B Spy {|NA, NB, K|} ~: set_of_list evs;                 \
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   473
\           A ~: lost;  B ~: lost;  evs : otway lost |]                  \
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   474
\        ==> K ~: analz (sees lost Spy evs)";
2014
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   475
by (forward_tac [Says_Server_message_form] 1 THEN assume_tac 1);
5be4c8ca7b25 Correction of protocol; addition of Reveal message; proofs of
paulson
parents: 1999
diff changeset
   476
by (fast_tac (!claset addSEs [lemma]) 1);
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   477
qed "Spy_not_see_encrypted_key";
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   478
1945
20ca9cf90e69 A further tidying
paulson
parents: 1941
diff changeset
   479
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   480
goal thy 
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   481
 "!!evs. [| C ~: {A,B,Server};                                           \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   482
\           Says Server B                                                \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   483
\            {|NA, Crypt {|NA, K|} (shrK A),                             \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   484
\                  Crypt {|NB, K|} (shrK B)|} : set_of_list evs;         \
2135
80477862ab33 Minor corrections
paulson
parents: 2134
diff changeset
   485
\           Says B Spy {|NA, NB, K|} ~: set_of_list evs;                 \
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   486
\           A ~: lost;  B ~: lost;  evs : otway lost |]                  \
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   487
\        ==> K ~: analz (sees lost C evs)";
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   488
by (rtac (subset_insertI RS sees_mono RS analz_mono RS contra_subsetD) 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   489
by (rtac (sees_lost_agent_subset_sees_Spy RS analz_mono RS contra_subsetD) 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   490
by (FIRSTGOAL (rtac Spy_not_see_encrypted_key));
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   491
by (REPEAT_FIRST (fast_tac (!claset addIs [otway_mono RS subsetD])));
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   492
qed "Agent_not_see_encrypted_key";
1945
20ca9cf90e69 A further tidying
paulson
parents: 1941
diff changeset
   493
20ca9cf90e69 A further tidying
paulson
parents: 1941
diff changeset
   494
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   495
(**** Authenticity properties relating to NB ****)
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   496
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   497
(*Only OR2 can have caused such a part of a message to appear.  We do not
2194
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   498
  know anything about X: it does NOT have to have the right form.*)
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   499
goal thy 
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   500
 "!!evs. [| B ~: lost;  evs : otway lost |]                    \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   501
\        ==> Crypt {|NA, NB, Agent A, Agent B|} (shrK B)       \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   502
\             : parts (sees lost Spy evs) -->                  \
2194
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   503
\            (EX X. Says B Server                              \
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   504
\             {|NA, Agent A, Agent B, X,                       \
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   505
\               Crypt {|NA, NB, Agent A, Agent B|} (shrK B)|}  \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   506
\             : set_of_list evs)";
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   507
by (parts_induct_tac 1);
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   508
by (auto_tac (!claset, !simpset addcongs [conj_cong]));
2194
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   509
bind_thm ("Crypt_imp_OR2", result() RSN (2,rev_mp) RS exE);
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   510
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   511
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   512
(** The Nonce NB uniquely identifies B's  message. **)
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   513
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   514
goal thy 
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   515
 "!!evs. [| evs : otway lost; B ~: lost |]               \
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   516
\ ==> EX NA' A'. ALL NA A.                               \
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   517
\      Crypt {|NA, NB, Agent A, Agent B|} (shrK B) : parts(sees lost Spy evs) \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   518
\      --> NA = NA' & A = A'";
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   519
by (parts_induct_tac 1);
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   520
by (simp_tac (!simpset addsimps [all_conj_distrib]) 1); 
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   521
(*OR2: creation of new Nonce.  Move assertion into global context*)
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   522
by (expand_case_tac "NB = ?y" 1);
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   523
by (fast_tac (!claset addSEs (nonce_not_seen_now::partsEs)) 1);
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   524
val lemma = result();
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   525
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   526
goal thy 
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   527
 "!!evs.[| Crypt {|NA, NB, Agent A, Agent B|} (shrK B) \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   528
\                  : parts(sees lost Spy evs);         \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   529
\          Crypt {|NC, NB, Agent C, Agent B|} (shrK B) \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   530
\                  : parts(sees lost Spy evs);         \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   531
\          evs : otway lost;  B ~: lost |]             \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   532
\        ==> NC = NA & C = A";
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   533
by (dtac lemma 1);
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   534
by (assume_tac 1);
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   535
by (REPEAT (etac exE 1));
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   536
(*Duplicate the assumption*)
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   537
by (forw_inst_tac [("psi", "ALL C.?P(C)")] asm_rl 1);
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   538
by (fast_tac (!claset addSDs [spec]) 1);
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   539
qed "unique_NB";
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   540
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   541
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   542
(*If the encrypted message appears, and B has used Nonce NB,
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   543
  then it originated with the Server!*)
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   544
goal thy 
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   545
 "!!evs. [| B ~: lost;  B ~= Spy;  evs : otway lost |]                   \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   546
\    ==> Crypt {|NB, Key K|} (shrK B) : parts (sees lost Spy evs)        \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   547
\        --> (ALL X'. Says B Server                                      \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   548
\                       {|NA, Agent A, Agent B, X',                      \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   549
\                         Crypt {|NA, NB, Agent A, Agent B|} (shrK B)|}  \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   550
\             : set_of_list evs                                          \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   551
\             --> Says Server B                                          \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   552
\                  {|NA, Crypt {|NA, Key K|} (shrK A),                   \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   553
\                        Crypt {|NB, Key K|} (shrK B)|}                  \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   554
\                   : set_of_list evs)";
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   555
by (parts_induct_tac 1);
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   556
(*OR1: it cannot be a new Nonce, contradiction.*)
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   557
by (fast_tac (!claset addSIs [parts_insertI]
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   558
                      addSEs partsEs
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   559
                      addEs [Says_imp_old_nonces RS less_irrefl]
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   560
                      addss (!simpset)) 1);
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   561
(*OR4*)
2194
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   562
by (fast_tac (!claset addSEs [MPair_parts, Crypt_imp_OR2]) 2);
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   563
(*OR3*)
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   564
by (step_tac (!claset delrules [disjCI, impCE]) 1);
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   565
by (fast_tac (!claset delrules [conjI] (*stop split-up*)) 3); 
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   566
by (fast_tac (!claset addSDs [Says_imp_sees_Spy RS parts.Inj]
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   567
                      addSEs [MPair_parts]
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   568
                      addDs  [unique_NB]) 2);
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   569
by (fast_tac (!claset addSEs [MPair_parts]
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   570
                      addSDs [Says_imp_sees_Spy RS parts.Inj]
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   571
                      addSEs  [no_nonce_OR1_OR2 RSN (2, rev_notE)]
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   572
                      delrules [conjI, impCE] (*stop split-up*)) 1);
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   573
qed_spec_mp "NB_Crypt_imp_Server_msg";
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   574
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   575
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   576
(*Guarantee for B: if it gets a message with matching NB then the Server
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   577
  has sent the correct message.*)
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   578
goal thy 
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   579
 "!!evs. [| B ~: lost;  B ~= Spy;  evs : otway lost;               \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   580
\           Says S B {|NA, X, Crypt {|NB, Key K|} (shrK B)|}       \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   581
\            : set_of_list evs;                                    \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   582
\           Says B Server {|NA, Agent A, Agent B, X',              \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   583
\                           Crypt {|NA, NB, Agent A, Agent B|}     \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   584
\                                 (shrK B)|}                       \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   585
\            : set_of_list evs |]                                  \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   586
\        ==> Says Server B                                         \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   587
\                 {|NA,                                            \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   588
\                   Crypt {|NA, Key K|} (shrK A),                  \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   589
\                   Crypt {|NB, Key K|} (shrK B)|}                 \
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   590
\                   : set_of_list evs";
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   591
by (fast_tac (!claset addSIs [NB_Crypt_imp_Server_msg]
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   592
                      addEs  partsEs
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   593
                      addDs  [Says_imp_sees_Spy RS parts.Inj]) 1);
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   594
qed "B_trust_OR3";
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   595
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   596
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2053
diff changeset
   597
B_trust_OR3 RS Spy_not_see_encrypted_key;
2048
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   598
bb54fbba0071 Added new guarantees for A and B
paulson
parents: 2045
diff changeset
   599
1945
20ca9cf90e69 A further tidying
paulson
parents: 1941
diff changeset
   600
goal thy 
2214
f869dc885841 Minor reformatting
paulson
parents: 2194
diff changeset
   601
 "!!evs. [| B ~: lost;  evs : otway lost |]                           \
f869dc885841 Minor reformatting
paulson
parents: 2194
diff changeset
   602
\        ==> Says Server B                                            \
f869dc885841 Minor reformatting
paulson
parents: 2194
diff changeset
   603
\              {|NA, Crypt {|NA, Key K|} (shrK A),                    \
f869dc885841 Minor reformatting
paulson
parents: 2194
diff changeset
   604
\                Crypt {|NB, Key K|} (shrK B)|} : set_of_list evs --> \
f869dc885841 Minor reformatting
paulson
parents: 2194
diff changeset
   605
\            (EX X. Says B Server {|NA, Agent A, Agent B, X,          \
f869dc885841 Minor reformatting
paulson
parents: 2194
diff changeset
   606
\                            Crypt {|NA, NB, Agent A, Agent B|}       \
f869dc885841 Minor reformatting
paulson
parents: 2194
diff changeset
   607
\                                  (shrK B)|}                         \
2194
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   608
\            : set_of_list evs)";
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   609
by (etac otway.induct 1);
2194
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   610
by (Auto_tac());
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   611
bd (Says_imp_sees_Spy RS parts.Inj) 1;
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   612
by (fast_tac (!claset addSEs [MPair_parts, Crypt_imp_OR2]) 1);
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   613
bind_thm ("OR3_imp_OR2", result() RSN (2,rev_mp) RS exE);
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   614
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   615
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   616
(*After getting and checking OR4, agent A can trust that B has been active.
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   617
  We could probably prove that X has the expected form, but that is not
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   618
  strictly necessary for authentication.*)
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   619
goal thy 
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   620
 "!!evs. [| Says B' A {|NA, Crypt {|NA, Key K|} (shrK A)|}         \
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   621
\            : set_of_list evs;                                    \
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   622
\           Says A B {|NA, Agent A, Agent B,                       \
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   623
\                      Crypt {|NA, Agent A, Agent B|} (shrK A)|}   \
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   624
\            : set_of_list evs;                                    \
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   625
\           A ~: lost;  A ~= Spy;  B ~: lost;  evs : otway lost |] \
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   626
\        ==> EX NB X. Says B Server {|NA, Agent A, Agent B, X,     \
2214
f869dc885841 Minor reformatting
paulson
parents: 2194
diff changeset
   627
\                                     Crypt {|NA, NB, Agent A, Agent B|}    \
f869dc885841 Minor reformatting
paulson
parents: 2194
diff changeset
   628
\                                           (shrK B)|}                      \
2194
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   629
\            : set_of_list evs";
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   630
by (fast_tac (!claset addSDs  [A_trust_OR4]
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   631
	              addSEs [OR3_imp_OR2]) 1);
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   632
qed "A_auths_B";
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   633
63a68a3a8a76 Removal of an obsolete result, and authentication of
paulson
parents: 2171
diff changeset
   634