src/HOL/Auth/OtwayRees.thy
author wenzelm
Mon, 20 May 2024 15:43:51 +0200
changeset 80182 29f2b8ff84f3
parent 76299 0ad6f6508274
permissions -rw-r--r--
proper support for "isabelle update -D DIR": avoid accidental exclusion of select_dirs (amending e5dafe9e120f);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37936
1e4c5015a72e updated some headers;
wenzelm
parents: 32960
diff changeset
     1
(*  Title:      HOL/Auth/OtwayRees.thy
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
     3
    Copyright   1996  University of Cambridge
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
     4
*)
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
     5
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
     6
section\<open>The Original Otway-Rees Protocol\<close>
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
     7
16417
9bc16273c2d4 migrated theory headers to new format
haftmann
parents: 14238
diff changeset
     8
theory OtwayRees imports Public begin
13907
2bc462b99e70 tidying
paulson
parents: 13507
diff changeset
     9
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
    10
text\<open>From page 244 of
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
    11
  Burrows, Abadi and Needham (1989).  A Logic of Authentication.
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
    12
  Proc. Royal Soc. 426
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
    13
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
    14
This is the original version, which encrypts Nonce NB.\<close>
6308
76f3865a2b1d Added Bella's "Gets" model for Otway_Rees. Also affects some other theories.
paulson
parents: 5434
diff changeset
    15
23746
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 18570
diff changeset
    16
inductive_set otway :: "event list set"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 18570
diff changeset
    17
  where
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    18
   Nil:  "[] \<in> otway"
76299
0ad6f6508274 Tidying of some very old proofs
paulson <lp15@cam.ac.uk>
parents: 76297
diff changeset
    19
   \<comment> \<open>Initial trace is empty\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    20
 | Fake: "\<lbrakk>evsf \<in> otway;  X \<in> synth (analz (knows Spy evsf)) \<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    21
          \<Longrightarrow> Says Spy B X  # evsf \<in> otway"
76299
0ad6f6508274 Tidying of some very old proofs
paulson <lp15@cam.ac.uk>
parents: 76297
diff changeset
    22
   \<comment> \<open>The spy can say almost anything.\<close>
0ad6f6508274 Tidying of some very old proofs
paulson <lp15@cam.ac.uk>
parents: 76297
diff changeset
    23
 | Reception: "\<lbrakk>evsr \<in> otway;  Says A B X \<in>set evsr\<rbrakk> \<Longrightarrow> Gets B X # evsr \<in> otway"
0ad6f6508274 Tidying of some very old proofs
paulson <lp15@cam.ac.uk>
parents: 76297
diff changeset
    24
   \<comment> \<open>A message that has been sent can be received by the intended recipient.\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    25
 | OR1:  "\<lbrakk>evs1 \<in> otway;  Nonce NA \<notin> used evs1\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    26
          \<Longrightarrow> Says A B \<lbrace>Nonce NA, Agent A, Agent B,
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
    27
                         Crypt (shrK A) \<lbrace>Nonce NA, Agent A, Agent B\<rbrace> \<rbrace>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    28
                 # evs1 \<in> otway"
76299
0ad6f6508274 Tidying of some very old proofs
paulson <lp15@cam.ac.uk>
parents: 76297
diff changeset
    29
  \<comment> \<open>Alice initiates a protocol run\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    30
 | OR2:  "\<lbrakk>evs2 \<in> otway;  Nonce NB \<notin> used evs2;
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
    31
             Gets B \<lbrace>Nonce NA, Agent A, Agent B, X\<rbrace> \<in> set evs2\<rbrakk>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    32
          \<Longrightarrow> Says B Server
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
    33
                  \<lbrace>Nonce NA, Agent A, Agent B, X,
2451
ce85a2aafc7a Extensive tidying and simplification, largely stemming from
paulson
parents: 2378
diff changeset
    34
                    Crypt (shrK B)
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
    35
                      \<lbrace>Nonce NA, Nonce NB, Agent A, Agent B\<rbrace>\<rbrace>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    36
                 # evs2 \<in> otway"
76299
0ad6f6508274 Tidying of some very old proofs
paulson <lp15@cam.ac.uk>
parents: 76297
diff changeset
    37
   \<comment> \<open>Bob's response to Alice's message.  Note that NB is encrypted.\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    38
 | OR3:  "\<lbrakk>evs3 \<in> otway;  Key KAB \<notin> used evs3;
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    39
             Gets Server
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
    40
                  \<lbrace>Nonce NA, Agent A, Agent B,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
    41
                    Crypt (shrK A) \<lbrace>Nonce NA, Agent A, Agent B\<rbrace>,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
    42
                    Crypt (shrK B) \<lbrace>Nonce NA, Nonce NB, Agent A, Agent B\<rbrace>\<rbrace>
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
    43
               \<in> set evs3\<rbrakk>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    44
          \<Longrightarrow> Says Server B
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
    45
                  \<lbrace>Nonce NA,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
    46
                    Crypt (shrK A) \<lbrace>Nonce NA, Key KAB\<rbrace>,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
    47
                    Crypt (shrK B) \<lbrace>Nonce NB, Key KAB\<rbrace>\<rbrace>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    48
                 # evs3 \<in> otway"
76299
0ad6f6508274 Tidying of some very old proofs
paulson <lp15@cam.ac.uk>
parents: 76297
diff changeset
    49
   \<comment> \<open>The Server receives Bob's message and checks that the three NAs
0ad6f6508274 Tidying of some very old proofs
paulson <lp15@cam.ac.uk>
parents: 76297
diff changeset
    50
       match.  Then he sends a new session key to Bob with a packet for forwarding to Alice\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    51
 | OR4:  "\<lbrakk>evs4 \<in> otway;  B \<noteq> Server;
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
    52
             Says B Server \<lbrace>Nonce NA, Agent A, Agent B, X',
2284
80ebd1a213fd Swapped arguments of Crypt (for clarity and because it is conventional)
paulson
parents: 2135
diff changeset
    53
                             Crypt (shrK B)
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
    54
                                   \<lbrace>Nonce NA, Nonce NB, Agent A, Agent B\<rbrace>\<rbrace>
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
    55
               \<in> set evs4;
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
    56
             Gets B \<lbrace>Nonce NA, X, Crypt (shrK B) \<lbrace>Nonce NB, Key K\<rbrace>\<rbrace>
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
    57
               \<in> set evs4\<rbrakk>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    58
          \<Longrightarrow> Says B A \<lbrace>Nonce NA, X\<rbrace> # evs4 \<in> otway"
76299
0ad6f6508274 Tidying of some very old proofs
paulson <lp15@cam.ac.uk>
parents: 76297
diff changeset
    59
   \<comment> \<open>Bob receives the Server's (?) message and compares the Nonces with
0ad6f6508274 Tidying of some very old proofs
paulson <lp15@cam.ac.uk>
parents: 76297
diff changeset
    60
       those in the message he previously sent the Server.
0ad6f6508274 Tidying of some very old proofs
paulson <lp15@cam.ac.uk>
parents: 76297
diff changeset
    61
       Need @{term"B \<noteq> Server"} because we allow messages to self.\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    62
 | Oops: "\<lbrakk>evso \<in> otway;
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
    63
             Says Server B \<lbrace>Nonce NA, X, Crypt (shrK B) \<lbrace>Nonce NB, Key K\<rbrace>\<rbrace>
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
    64
               \<in> set evso\<rbrakk>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    65
          \<Longrightarrow> Notes Spy \<lbrace>Nonce NA, Nonce NB, Key K\<rbrace> # evso \<in> otway"
76299
0ad6f6508274 Tidying of some very old proofs
paulson <lp15@cam.ac.uk>
parents: 76297
diff changeset
    66
   \<comment> \<open>This message models possible leaks of session keys.  The nonces identify the protocol run\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    67
18570
ffce25f9aa7f a few more named lemmas
paulson
parents: 17778
diff changeset
    68
declare Says_imp_analz_Spy [dest]
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    69
declare parts.Body  [dest]
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    70
declare analz_into_parts [dest]
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    71
declare Fake_parts_insert_in_Un  [dest]
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    72
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    73
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
    74
text\<open>A "possibility property": there are traces that reach the end\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    75
lemma "\<lbrakk>B \<noteq> Server; Key K \<notin> used []\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    76
      \<Longrightarrow> \<exists>evs \<in> otway.
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
    77
             Says B A \<lbrace>Nonce NA, Crypt (shrK A) \<lbrace>Nonce NA, Key K\<rbrace>\<rbrace>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    78
               \<in> set evs"
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    79
apply (intro exI bexI)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    80
apply (rule_tac [2] otway.Nil
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    81
                    [THEN otway.OR1, THEN otway.Reception,
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    82
                     THEN otway.OR2, THEN otway.Reception,
14200
d8598e24f8fa Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents: 13907
diff changeset
    83
                     THEN otway.OR3, THEN otway.Reception, THEN otway.OR4]) 
d8598e24f8fa Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents: 13907
diff changeset
    84
apply (possibility, simp add: used_Cons) 
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    85
done
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    86
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    87
lemma Gets_imp_Says [dest!]:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    88
     "\<lbrakk>Gets B X \<in> set evs; evs \<in> otway\<rbrakk> \<Longrightarrow> \<exists>A. Says A B X \<in> set evs"
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    89
apply (erule rev_mp)
13507
febb8e5d2a9d tidying of Isar scripts
paulson
parents: 11655
diff changeset
    90
apply (erule otway.induct, auto)
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    91
done
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    92
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    93
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    94
(** For reasoning about the encrypted portion of messages **)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    95
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
    96
lemma OR2_analz_knows_Spy:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    97
     "\<lbrakk>Gets B \<lbrace>N, Agent A, Agent B, X\<rbrace> \<in> set evs;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
    98
      \<Longrightarrow> X \<in> analz (knows Spy evs)"
76299
0ad6f6508274 Tidying of some very old proofs
paulson <lp15@cam.ac.uk>
parents: 76297
diff changeset
    99
  by blast
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   100
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   101
lemma OR4_analz_knows_Spy:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   102
     "\<lbrakk>Gets B \<lbrace>N, X, Crypt (shrK B) X'\<rbrace> \<in> set evs;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   103
      \<Longrightarrow> X \<in> analz (knows Spy evs)"
76299
0ad6f6508274 Tidying of some very old proofs
paulson <lp15@cam.ac.uk>
parents: 76297
diff changeset
   104
  by blast
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   105
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   106
(*These lemmas assist simplification by removing forwarded X-variables.
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   107
  We can replace them by rewriting with parts_insert2 and proving using
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   108
  dest: parts_cut, but the proofs become more difficult.*)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   109
lemmas OR2_parts_knows_Spy =
45605
a89b4bc311a5 eliminated obsolete "standard";
wenzelm
parents: 37936
diff changeset
   110
    OR2_analz_knows_Spy [THEN analz_into_parts]
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   111
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   112
(*There could be OR4_parts_knows_Spy and Oops_parts_knows_Spy, but for
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   113
  some reason proofs work without them!*)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   114
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   115
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 67613
diff changeset
   116
text\<open>Theorems of the form \<^term>\<open>X \<notin> parts (spies evs)\<close> imply that
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   117
NOBODY sends messages containing X!\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   118
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   119
text\<open>Spy never sees a good agent's shared key!\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   120
lemma Spy_see_shrK [simp]:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   121
     "evs \<in> otway \<Longrightarrow> (Key (shrK A) \<in> parts (knows Spy evs)) = (A \<in> bad)"
13907
2bc462b99e70 tidying
paulson
parents: 13507
diff changeset
   122
by (erule otway.induct, force,
2bc462b99e70 tidying
paulson
parents: 13507
diff changeset
   123
    drule_tac [4] OR2_parts_knows_Spy, simp_all, blast+)
2bc462b99e70 tidying
paulson
parents: 13507
diff changeset
   124
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   125
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   126
lemma Spy_analz_shrK [simp]:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   127
     "evs \<in> otway \<Longrightarrow> (Key (shrK A) \<in> analz (knows Spy evs)) = (A \<in> bad)"
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   128
by auto
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   129
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   130
lemma Spy_see_shrK_D [dest!]:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   131
     "\<lbrakk>Key (shrK A) \<in> parts (knows Spy evs);  evs \<in> otway\<rbrakk> \<Longrightarrow> A \<in> bad"
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   132
by (blast dest: Spy_see_shrK)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   133
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   134
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 67613
diff changeset
   135
subsection\<open>Towards Secrecy: Proofs Involving \<^term>\<open>analz\<close>\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   136
76297
e7f9e5b3a36a tidying of some old proofs
paulson <lp15@cam.ac.uk>
parents: 69597
diff changeset
   137
text \<open>Describes the form of K and NA when the Server sends this message.  Also
e7f9e5b3a36a tidying of some old proofs
paulson <lp15@cam.ac.uk>
parents: 69597
diff changeset
   138
  for Oops case.\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   139
lemma Says_Server_message_form:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   140
     "\<lbrakk>Says Server B \<lbrace>NA, X, Crypt (shrK B) \<lbrace>NB, Key K\<rbrace>\<rbrace> \<in> set evs;
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   141
         evs \<in> otway\<rbrakk>
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
   142
      \<Longrightarrow> K \<notin> range shrK \<and> (\<exists>i. NA = Nonce i) \<and> (\<exists>j. NB = Nonce j)"
17778
93d7e524417a changes due to new neq_simproc in simpdata.ML
nipkow
parents: 17411
diff changeset
   143
by (erule rev_mp, erule otway.induct, simp_all)
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   144
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   145
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   146
(****
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   147
 The following is to prove theorems of the form
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   148
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   149
  Key K \<in> analz (insert (Key KAB) (knows Spy evs)) \<Longrightarrow>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   150
  Key K \<in> analz (knows Spy evs)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   151
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   152
 A more general formula must be proved inductively.
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   153
****)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   154
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   155
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   156
text\<open>Session keys are not used to encrypt other session keys\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   157
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   158
text\<open>The equality makes the induction hypothesis easier to apply\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   159
lemma analz_image_freshK [rule_format]:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   160
 "evs \<in> otway \<Longrightarrow>
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
   161
   \<forall>K KK. KK \<subseteq> -(range shrK) \<longrightarrow>
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
   162
          (Key K \<in> analz (Key`KK \<union> (knows Spy evs))) =
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   163
          (K \<in> KK | Key K \<in> analz (knows Spy evs))"
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   164
apply (erule otway.induct)
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   165
apply (frule_tac [8] Says_Server_message_form)
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   166
apply (drule_tac [7] OR4_analz_knows_Spy)
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   167
apply (drule_tac [5] OR2_analz_knows_Spy, analz_freshK, spy_analz, auto) 
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   168
done
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   169
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   170
lemma analz_insert_freshK:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   171
  "\<lbrakk>evs \<in> otway;  KAB \<notin> range shrK\<rbrakk> \<Longrightarrow>
11655
923e4d0d36d5 tuned parentheses in relational expressions;
wenzelm
parents: 11251
diff changeset
   172
      (Key K \<in> analz (insert (Key KAB) (knows Spy evs))) =
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   173
      (K = KAB | Key K \<in> analz (knows Spy evs))"
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   174
by (simp only: analz_image_freshK analz_image_freshK_simps)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   175
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   176
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   177
text\<open>The Key K uniquely identifies the Server's  message.\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   178
lemma unique_session_keys:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   179
     "\<lbrakk>Says Server B \<lbrace>NA, X, Crypt (shrK B) \<lbrace>NB, K\<rbrace>\<rbrace>   \<in> set evs;
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   180
         Says Server B' \<lbrace>NA',X',Crypt (shrK B') \<lbrace>NB',K\<rbrace>\<rbrace> \<in> set evs;
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
   181
         evs \<in> otway\<rbrakk> \<Longrightarrow> X=X' \<and> B=B' \<and> NA=NA' \<and> NB=NB'"
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   182
apply (erule rev_mp)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   183
apply (erule rev_mp)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   184
apply (erule otway.induct, simp_all)
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   185
apply blast+  \<comment> \<open>OR3 and OR4\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   186
done
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   187
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   188
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   189
subsection\<open>Authenticity properties relating to NA\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   190
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   191
text\<open>Only OR1 can have caused such a part of a message to appear.\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   192
lemma Crypt_imp_OR1 [rule_format]:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   193
 "\<lbrakk>A \<notin> bad;  evs \<in> otway\<rbrakk>
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
   194
  \<Longrightarrow> Crypt (shrK A) \<lbrace>NA, Agent A, Agent B\<rbrace> \<in> parts (knows Spy evs) \<longrightarrow>
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   195
      Says A B \<lbrace>NA, Agent A, Agent B,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   196
                 Crypt (shrK A) \<lbrace>NA, Agent A, Agent B\<rbrace>\<rbrace>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   197
        \<in> set evs"
14225
6d1026266e2b better presentation
paulson
parents: 14207
diff changeset
   198
by (erule otway.induct, force,
6d1026266e2b better presentation
paulson
parents: 14207
diff changeset
   199
    drule_tac [4] OR2_parts_knows_Spy, simp_all, blast+)
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   200
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   201
lemma Crypt_imp_OR1_Gets:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   202
     "\<lbrakk>Gets B \<lbrace>NA, Agent A, Agent B,
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   203
                  Crypt (shrK A) \<lbrace>NA, Agent A, Agent B\<rbrace>\<rbrace> \<in> set evs;
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   204
         A \<notin> bad; evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   205
       \<Longrightarrow> Says A B \<lbrace>NA, Agent A, Agent B,
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   206
                      Crypt (shrK A) \<lbrace>NA, Agent A, Agent B\<rbrace>\<rbrace>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   207
             \<in> set evs"
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   208
by (blast dest: Crypt_imp_OR1)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   209
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   210
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   211
text\<open>The Nonce NA uniquely identifies A's message\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   212
lemma unique_NA:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   213
     "\<lbrakk>Crypt (shrK A) \<lbrace>NA, Agent A, Agent B\<rbrace> \<in> parts (knows Spy evs);
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   214
         Crypt (shrK A) \<lbrace>NA, Agent A, Agent C\<rbrace> \<in> parts (knows Spy evs);
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   215
         evs \<in> otway;  A \<notin> bad\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   216
      \<Longrightarrow> B = C"
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   217
apply (erule rev_mp, erule rev_mp)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   218
apply (erule otway.induct, force,
13507
febb8e5d2a9d tidying of Isar scripts
paulson
parents: 11655
diff changeset
   219
       drule_tac [4] OR2_parts_knows_Spy, simp_all, blast+)
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   220
done
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   221
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   222
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   223
text\<open>It is impossible to re-use a nonce in both OR1 and OR2.  This holds because
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   224
  OR2 encrypts Nonce NB.  It prevents the attack that can occur in the
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   225
  over-simplified version of this protocol: see \<open>OtwayRees_Bad\<close>.\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   226
lemma no_nonce_OR1_OR2:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   227
   "\<lbrakk>Crypt (shrK A) \<lbrace>NA, Agent A, Agent B\<rbrace> \<in> parts (knows Spy evs);
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   228
       A \<notin> bad;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   229
    \<Longrightarrow> Crypt (shrK A) \<lbrace>NA', NA, Agent A', Agent A\<rbrace> \<notin> parts (knows Spy evs)"
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   230
apply (erule rev_mp)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   231
apply (erule otway.induct, force,
13507
febb8e5d2a9d tidying of Isar scripts
paulson
parents: 11655
diff changeset
   232
       drule_tac [4] OR2_parts_knows_Spy, simp_all, blast+)
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   233
done
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   234
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   235
text\<open>Crucial property: If the encrypted message appears, and A has used NA
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   236
  to start a run, then it originated with the Server!\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   237
lemma NA_Crypt_imp_Server_msg [rule_format]:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   238
     "\<lbrakk>A \<notin> bad;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   239
      \<Longrightarrow> Says A B \<lbrace>NA, Agent A, Agent B,
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
   240
                     Crypt (shrK A) \<lbrace>NA, Agent A, Agent B\<rbrace>\<rbrace> \<in> set evs \<longrightarrow>
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   241
          Crypt (shrK A) \<lbrace>NA, Key K\<rbrace> \<in> parts (knows Spy evs)
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
   242
          \<longrightarrow> (\<exists>NB. Says Server B
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   243
                         \<lbrace>NA,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   244
                           Crypt (shrK A) \<lbrace>NA, Key K\<rbrace>,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   245
                           Crypt (shrK B) \<lbrace>NB, Key K\<rbrace>\<rbrace> \<in> set evs)"
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   246
apply (erule otway.induct, force,
13507
febb8e5d2a9d tidying of Isar scripts
paulson
parents: 11655
diff changeset
   247
       drule_tac [4] OR2_parts_knows_Spy, simp_all, blast)
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   248
  subgoal \<comment> \<open>OR1: by freshness\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   249
    by blast  
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   250
  subgoal \<comment> \<open>OR3\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   251
    by (blast dest!: no_nonce_OR1_OR2 intro: unique_NA)
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   252
  subgoal \<comment> \<open>OR4\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   253
    by (blast intro!: Crypt_imp_OR1) 
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   254
done
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   255
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   256
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   257
text\<open>Corollary: if A receives B's OR4 message and the nonce NA agrees
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   258
  then the key really did come from the Server!  CANNOT prove this of the
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   259
  bad form of this protocol, even though we can prove
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   260
  \<open>Spy_not_see_encrypted_key\<close>\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   261
lemma A_trusts_OR4:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   262
     "\<lbrakk>Says A  B \<lbrace>NA, Agent A, Agent B,
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   263
                     Crypt (shrK A) \<lbrace>NA, Agent A, Agent B\<rbrace>\<rbrace> \<in> set evs;
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   264
         Says B' A \<lbrace>NA, Crypt (shrK A) \<lbrace>NA, Key K\<rbrace>\<rbrace> \<in> set evs;
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   265
     A \<notin> bad;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   266
  \<Longrightarrow> \<exists>NB. Says Server B
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   267
               \<lbrace>NA,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   268
                 Crypt (shrK A) \<lbrace>NA, Key K\<rbrace>,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   269
                 Crypt (shrK B) \<lbrace>NB, Key K\<rbrace>\<rbrace>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   270
                 \<in> set evs"
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   271
by (blast intro!: NA_Crypt_imp_Server_msg)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   272
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   273
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   274
text\<open>Crucial secrecy property: Spy does not see the keys sent in msg OR3
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   275
    Does not in itself guarantee security: an attack could violate
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 67613
diff changeset
   276
    the premises, e.g. by having \<^term>\<open>A=Spy\<close>\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   277
lemma secrecy_lemma:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   278
 "\<lbrakk>A \<notin> bad;  B \<notin> bad;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   279
  \<Longrightarrow> Says Server B
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   280
        \<lbrace>NA, Crypt (shrK A) \<lbrace>NA, Key K\<rbrace>,
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
   281
          Crypt (shrK B) \<lbrace>NB, Key K\<rbrace>\<rbrace> \<in> set evs \<longrightarrow>
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
   282
      Notes Spy \<lbrace>NA, NB, Key K\<rbrace> \<notin> set evs \<longrightarrow>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   283
      Key K \<notin> analz (knows Spy evs)"
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   284
  apply (erule otway.induct, force, simp_all)
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   285
  subgoal \<comment> \<open>Fake\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   286
    by spy_analz
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   287
  subgoal \<comment> \<open>OR2\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   288
    by (drule OR2_analz_knows_Spy) (auto simp: analz_insert_eq)
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   289
  subgoal \<comment> \<open>OR3\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   290
    by (auto simp add: analz_insert_freshK pushes)
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   291
  subgoal \<comment> \<open>OR4\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   292
    by (drule OR4_analz_knows_Spy) (auto simp: analz_insert_eq)
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   293
  subgoal \<comment> \<open>Oops\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   294
    by (auto simp add: Says_Server_message_form analz_insert_freshK unique_session_keys)
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   295
  done
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   296
13907
2bc462b99e70 tidying
paulson
parents: 13507
diff changeset
   297
theorem Spy_not_see_encrypted_key:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   298
     "\<lbrakk>Says Server B
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   299
          \<lbrace>NA, Crypt (shrK A) \<lbrace>NA, Key K\<rbrace>,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   300
                Crypt (shrK B) \<lbrace>NB, Key K\<rbrace>\<rbrace> \<in> set evs;
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   301
         Notes Spy \<lbrace>NA, NB, Key K\<rbrace> \<notin> set evs;
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   302
         A \<notin> bad;  B \<notin> bad;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   303
      \<Longrightarrow> Key K \<notin> analz (knows Spy evs)"
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   304
by (blast dest: Says_Server_message_form secrecy_lemma)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   305
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   306
text\<open>This form is an immediate consequence of the previous result.  It is 
13907
2bc462b99e70 tidying
paulson
parents: 13507
diff changeset
   307
similar to the assertions established by other methods.  It is equivalent
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 67613
diff changeset
   308
to the previous result in that the Spy already has \<^term>\<open>analz\<close> and
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 67613
diff changeset
   309
\<^term>\<open>synth\<close> at his disposal.  However, the conclusion 
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 67613
diff changeset
   310
\<^term>\<open>Key K \<notin> knows Spy evs\<close> appears not to be inductive: all the cases
13907
2bc462b99e70 tidying
paulson
parents: 13507
diff changeset
   311
other than Fake are trivial, while Fake requires 
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 67613
diff changeset
   312
\<^term>\<open>Key K \<notin> analz (knows Spy evs)\<close>.\<close>
13907
2bc462b99e70 tidying
paulson
parents: 13507
diff changeset
   313
lemma Spy_not_know_encrypted_key:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   314
     "\<lbrakk>Says Server B
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   315
          \<lbrace>NA, Crypt (shrK A) \<lbrace>NA, Key K\<rbrace>,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   316
                Crypt (shrK B) \<lbrace>NB, Key K\<rbrace>\<rbrace> \<in> set evs;
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   317
         Notes Spy \<lbrace>NA, NB, Key K\<rbrace> \<notin> set evs;
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   318
         A \<notin> bad;  B \<notin> bad;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   319
      \<Longrightarrow> Key K \<notin> knows Spy evs"
13907
2bc462b99e70 tidying
paulson
parents: 13507
diff changeset
   320
by (blast dest: Spy_not_see_encrypted_key)
2bc462b99e70 tidying
paulson
parents: 13507
diff changeset
   321
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   322
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   323
text\<open>A's guarantee.  The Oops premise quantifies over NB because A cannot know
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   324
  what it is.\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   325
lemma A_gets_good_key:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   326
     "\<lbrakk>Says A  B \<lbrace>NA, Agent A, Agent B,
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   327
                     Crypt (shrK A) \<lbrace>NA, Agent A, Agent B\<rbrace>\<rbrace> \<in> set evs;
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   328
         Says B' A \<lbrace>NA, Crypt (shrK A) \<lbrace>NA, Key K\<rbrace>\<rbrace> \<in> set evs;
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   329
         \<forall>NB. Notes Spy \<lbrace>NA, NB, Key K\<rbrace> \<notin> set evs;
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   330
         A \<notin> bad;  B \<notin> bad;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   331
      \<Longrightarrow> Key K \<notin> analz (knows Spy evs)"
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   332
by (blast dest!: A_trusts_OR4 Spy_not_see_encrypted_key)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   333
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   334
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   335
subsection\<open>Authenticity properties relating to NB\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   336
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   337
text\<open>Only OR2 can have caused such a part of a message to appear.  We do not
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   338
  know anything about X: it does NOT have to have the right form.\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   339
lemma Crypt_imp_OR2:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   340
     "\<lbrakk>Crypt (shrK B) \<lbrace>NA, NB, Agent A, Agent B\<rbrace> \<in> parts (knows Spy evs);
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   341
         B \<notin> bad;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   342
      \<Longrightarrow> \<exists>X. Says B Server
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   343
                 \<lbrace>NA, Agent A, Agent B, X,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   344
                   Crypt (shrK B) \<lbrace>NA, NB, Agent A, Agent B\<rbrace>\<rbrace>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   345
                 \<in> set evs"
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   346
apply (erule rev_mp)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   347
apply (erule otway.induct, force,
13507
febb8e5d2a9d tidying of Isar scripts
paulson
parents: 11655
diff changeset
   348
       drule_tac [4] OR2_parts_knows_Spy, simp_all, blast+)
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   349
done
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   350
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   351
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   352
text\<open>The Nonce NB uniquely identifies B's  message\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   353
lemma unique_NB:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   354
     "\<lbrakk>Crypt (shrK B) \<lbrace>NA, NB, Agent A, Agent B\<rbrace> \<in> parts(knows Spy evs);
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   355
         Crypt (shrK B) \<lbrace>NC, NB, Agent C, Agent B\<rbrace> \<in> parts(knows Spy evs);
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   356
           evs \<in> otway;  B \<notin> bad\<rbrakk>
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
   357
         \<Longrightarrow> NC = NA \<and> C = A"
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   358
apply (erule rev_mp, erule rev_mp)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   359
apply (erule otway.induct, force,
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   360
       drule_tac [4] OR2_parts_knows_Spy, simp_all)
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   361
apply blast+  \<comment> \<open>Fake, OR2\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   362
done
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   363
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   364
text\<open>If the encrypted message appears, and B has used Nonce NB,
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   365
  then it originated with the Server!  Quite messy proof.\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   366
lemma NB_Crypt_imp_Server_msg [rule_format]:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   367
 "\<lbrakk>B \<notin> bad;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   368
  \<Longrightarrow> Crypt (shrK B) \<lbrace>NB, Key K\<rbrace> \<in> parts (knows Spy evs)
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
   369
      \<longrightarrow> (\<forall>X'. Says B Server
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   370
                     \<lbrace>NA, Agent A, Agent B, X',
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   371
                       Crypt (shrK B) \<lbrace>NA, NB, Agent A, Agent B\<rbrace>\<rbrace>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   372
           \<in> set evs
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67443
diff changeset
   373
           \<longrightarrow> Says Server B
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   374
                \<lbrace>NA, Crypt (shrK A) \<lbrace>NA, Key K\<rbrace>,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   375
                      Crypt (shrK B) \<lbrace>NB, Key K\<rbrace>\<rbrace>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   376
                    \<in> set evs)"
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   377
apply simp
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   378
apply (erule otway.induct, force, simp_all)
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   379
  subgoal \<comment> \<open>Fake\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   380
    by blast 
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   381
  subgoal \<comment> \<open>OR2\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   382
    by (force dest!: OR2_parts_knows_Spy)
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   383
  subgoal \<comment> \<open>OR3\<close>
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   384
    by (blast dest: unique_NB dest!: no_nonce_OR1_OR2)  \<comment> \<open>OR3\<close>
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 63975
diff changeset
   385
  subgoal \<comment> \<open>OR4\<close>
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   386
    by (blast dest!: Crypt_imp_OR2) 
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   387
done
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   388
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   389
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   390
text\<open>Guarantee for B: if it gets a message with matching NB then the Server
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   391
  has sent the correct message.\<close>
13907
2bc462b99e70 tidying
paulson
parents: 13507
diff changeset
   392
theorem B_trusts_OR3:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   393
     "\<lbrakk>Says B Server \<lbrace>NA, Agent A, Agent B, X',
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   394
                         Crypt (shrK B) \<lbrace>NA, NB, Agent A, Agent B\<rbrace>\<rbrace>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   395
           \<in> set evs;
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   396
         Gets B \<lbrace>NA, X, Crypt (shrK B) \<lbrace>NB, Key K\<rbrace>\<rbrace> \<in> set evs;
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   397
         B \<notin> bad;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   398
      \<Longrightarrow> Says Server B
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   399
               \<lbrace>NA,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   400
                 Crypt (shrK A) \<lbrace>NA, Key K\<rbrace>,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   401
                 Crypt (shrK B) \<lbrace>NB, Key K\<rbrace>\<rbrace>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   402
                 \<in> set evs"
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   403
by (blast intro!: NB_Crypt_imp_Server_msg)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   404
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   405
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   406
text\<open>The obvious combination of \<open>B_trusts_OR3\<close> with 
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   407
      \<open>Spy_not_see_encrypted_key\<close>\<close>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   408
lemma B_gets_good_key:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   409
     "\<lbrakk>Says B Server \<lbrace>NA, Agent A, Agent B, X',
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   410
                         Crypt (shrK B) \<lbrace>NA, NB, Agent A, Agent B\<rbrace>\<rbrace>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   411
           \<in> set evs;
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   412
         Gets B \<lbrace>NA, X, Crypt (shrK B) \<lbrace>NB, Key K\<rbrace>\<rbrace> \<in> set evs;
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   413
         Notes Spy \<lbrace>NA, NB, Key K\<rbrace> \<notin> set evs;
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   414
         A \<notin> bad;  B \<notin> bad;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   415
      \<Longrightarrow> Key K \<notin> analz (knows Spy evs)"
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   416
by (blast dest!: B_trusts_OR3 Spy_not_see_encrypted_key)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   417
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   418
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   419
lemma OR3_imp_OR2:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   420
     "\<lbrakk>Says Server B
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   421
              \<lbrace>NA, Crypt (shrK A) \<lbrace>NA, Key K\<rbrace>,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   422
                Crypt (shrK B) \<lbrace>NB, Key K\<rbrace>\<rbrace> \<in> set evs;
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   423
         B \<notin> bad;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   424
  \<Longrightarrow> \<exists>X. Says B Server \<lbrace>NA, Agent A, Agent B, X,
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   425
                            Crypt (shrK B) \<lbrace>NA, NB, Agent A, Agent B\<rbrace>\<rbrace>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   426
              \<in> set evs"
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   427
apply (erule rev_mp)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   428
apply (erule otway.induct, simp_all)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   429
apply (blast dest!: Crypt_imp_OR2)+
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   430
done
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   431
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   432
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   433
text\<open>After getting and checking OR4, agent A can trust that B has been active.
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   434
  We could probably prove that X has the expected form, but that is not
61830
4f5ab843cf5b isabelle update_cartouches -c -t;
wenzelm
parents: 58889
diff changeset
   435
  strictly necessary for authentication.\<close>
13907
2bc462b99e70 tidying
paulson
parents: 13507
diff changeset
   436
theorem A_auths_B:
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   437
     "\<lbrakk>Says B' A \<lbrace>NA, Crypt (shrK A) \<lbrace>NA, Key K\<rbrace>\<rbrace> \<in> set evs;
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   438
         Says A  B \<lbrace>NA, Agent A, Agent B,
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   439
                     Crypt (shrK A) \<lbrace>NA, Agent A, Agent B\<rbrace>\<rbrace> \<in> set evs;
63975
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   440
         A \<notin> bad;  B \<notin> bad;  evs \<in> otway\<rbrakk>
6728b5007ad0 Trying out "subgoal", and no more [| |]
paulson <lp15@cam.ac.uk>
parents: 61956
diff changeset
   441
  \<Longrightarrow> \<exists>NB X. Says B Server \<lbrace>NA, Agent A, Agent B, X,
61956
38b73f7940af more symbols;
wenzelm
parents: 61830
diff changeset
   442
                               Crypt (shrK B)  \<lbrace>NA, NB, Agent A, Agent B\<rbrace>\<rbrace>
11251
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   443
                 \<in> set evs"
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   444
by (blast dest!: A_trusts_OR4 OR3_imp_OR2)
a6816d47f41d converted many HOL/Auth theories to Isar scripts
paulson
parents: 11230
diff changeset
   445
1941
f97a6e5b6375 Initial working proof of Otway-Rees protocol
paulson
parents:
diff changeset
   446
end