src/HOL/Auth/ZhouGollmann.thy
author wenzelm
Tue, 07 Nov 2006 11:46:47 +0100
changeset 21205 dfe338ec9f9c
parent 20768 1d478c2d621f
child 21404 eb85850d3eb7
permissions -rw-r--r--
read_const: include type;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
     1
(*  Title:      HOL/Auth/ZhouGollmann
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
     2
    ID:         $Id$
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
     3
    Author:     Giampaolo Bella and L C Paulson, Cambridge Univ Computer Lab
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
     4
    Copyright   2003  University of Cambridge
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
     5
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
     6
The protocol of
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
     7
  Jianying Zhou and Dieter Gollmann,
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
     8
  A Fair Non-Repudiation Protocol,
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
     9
  Security and Privacy 1996 (Oakland)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    10
  55-61
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    11
*)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    12
16417
9bc16273c2d4 migrated theory headers to new format
haftmann
parents: 15068
diff changeset
    13
theory ZhouGollmann imports Public begin
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    14
20768
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 16417
diff changeset
    15
abbreviation
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    16
  TTP :: agent
20768
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 16417
diff changeset
    17
  "TTP == Server"
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    18
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    19
  f_sub :: nat
20768
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 16417
diff changeset
    20
  "f_sub == 5"
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    21
  f_nro :: nat
20768
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 16417
diff changeset
    22
  "f_nro == 2"
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    23
  f_nrr :: nat
20768
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 16417
diff changeset
    24
  "f_nrr == 3"
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    25
  f_con :: nat
20768
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 16417
diff changeset
    26
  "f_con == 4"
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    27
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    28
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    29
constdefs
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    30
  broken :: "agent set"    
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    31
    --{*the compromised honest agents; TTP is included as it's not allowed to
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    32
        use the protocol*}
14736
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
    33
   "broken == bad - {Spy}"
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    34
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    35
declare broken_def [simp]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    36
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    37
consts  zg  :: "event list set"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    38
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    39
inductive zg
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    40
  intros
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    41
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    42
  Nil:  "[] \<in> zg"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    43
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    44
  Fake: "[| evsf \<in> zg;  X \<in> synth (analz (spies evsf)) |]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    45
	 ==> Says Spy B X  # evsf \<in> zg"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    46
14736
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
    47
Reception:  "[| evsr \<in> zg; Says A B X \<in> set evsr |] ==> Gets B X # evsr \<in> zg"
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    48
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    49
  (*L is fresh for honest agents.
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    50
    We don't require K to be fresh because we don't bother to prove secrecy!
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    51
    We just assume that the protocol's objective is to deliver K fairly,
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    52
    rather than to keep M secret.*)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    53
  ZG1: "[| evs1 \<in> zg;  Nonce L \<notin> used evs1; C = Crypt K (Number m);
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    54
	   K \<in> symKeys;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    55
	   NRO = Crypt (priK A) {|Number f_nro, Agent B, Nonce L, C|}|]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    56
       ==> Says A B {|Number f_nro, Agent B, Nonce L, C, NRO|} # evs1 \<in> zg"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    57
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    58
  (*B must check that NRO is A's signature to learn the sender's name*)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    59
  ZG2: "[| evs2 \<in> zg;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    60
	   Gets B {|Number f_nro, Agent B, Nonce L, C, NRO|} \<in> set evs2;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    61
	   NRO = Crypt (priK A) {|Number f_nro, Agent B, Nonce L, C|};
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    62
	   NRR = Crypt (priK B) {|Number f_nrr, Agent A, Nonce L, C|}|]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    63
       ==> Says B A {|Number f_nrr, Agent A, Nonce L, NRR|} # evs2  \<in>  zg"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    64
14736
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
    65
  (*A must check that NRR is B's signature to learn the sender's name;
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
    66
    without spy, the matching label would be enough*)
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    67
  ZG3: "[| evs3 \<in> zg; C = Crypt K M; K \<in> symKeys;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    68
	   Says A B {|Number f_nro, Agent B, Nonce L, C, NRO|} \<in> set evs3;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    69
	   Gets A {|Number f_nrr, Agent A, Nonce L, NRR|} \<in> set evs3;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    70
	   NRR = Crypt (priK B) {|Number f_nrr, Agent A, Nonce L, C|};
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    71
	   sub_K = Crypt (priK A) {|Number f_sub, Agent B, Nonce L, Key K|}|]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    72
       ==> Says A TTP {|Number f_sub, Agent B, Nonce L, Key K, sub_K|}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    73
	     # evs3 \<in> zg"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    74
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    75
 (*TTP checks that sub_K is A's signature to learn who issued K, then
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    76
   gives credentials to A and B.  The Notes event models the availability of
14736
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
    77
   the credentials, but the act of fetching them is not modelled.  We also
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
    78
   give con_K to the Spy. This makes the threat model more dangerous, while 
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
    79
   also allowing lemma @{text Crypt_used_imp_spies} to omit the condition
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
    80
   @{term "K \<noteq> priK TTP"}. *)
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    81
  ZG4: "[| evs4 \<in> zg; K \<in> symKeys;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    82
	   Gets TTP {|Number f_sub, Agent B, Nonce L, Key K, sub_K|}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    83
	     \<in> set evs4;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    84
	   sub_K = Crypt (priK A) {|Number f_sub, Agent B, Nonce L, Key K|};
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    85
	   con_K = Crypt (priK TTP) {|Number f_con, Agent A, Agent B,
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    86
				      Nonce L, Key K|}|]
14736
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
    87
       ==> Says TTP Spy con_K
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
    88
           #
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
    89
	   Notes TTP {|Number f_con, Agent A, Agent B, Nonce L, Key K, con_K|}
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
    90
	   # evs4 \<in> zg"
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    91
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    92
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    93
declare Says_imp_knows_Spy [THEN analz.Inj, dest]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    94
declare Fake_parts_insert_in_Un  [dest]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    95
declare analz_into_parts [dest]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    96
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    97
declare symKey_neq_priEK [simp]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    98
declare symKey_neq_priEK [THEN not_sym, simp]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
    99
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   100
14146
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   101
text{*A "possibility property": there are traces that reach the end*}
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   102
lemma "[|A \<noteq> B; TTP \<noteq> A; TTP \<noteq> B; K \<in> symKeys|] ==>
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   103
     \<exists>L. \<exists>evs \<in> zg.
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   104
           Notes TTP {|Number f_con, Agent A, Agent B, Nonce L, Key K,
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   105
               Crypt (priK TTP) {|Number f_con, Agent A, Agent B, Nonce L, Key K|} |}
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   106
               \<in> set evs"
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   107
apply (intro exI bexI)
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   108
apply (rule_tac [2] zg.Nil
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   109
                    [THEN zg.ZG1, THEN zg.Reception [of _ A B],
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   110
                     THEN zg.ZG2, THEN zg.Reception [of _ B A],
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   111
                     THEN zg.ZG3, THEN zg.Reception [of _ A TTP], 
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   112
                     THEN zg.ZG4])
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   113
apply (possibility, auto)
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   114
done
0edd2d57eaf8 possibility proof!
paulson
parents: 14145
diff changeset
   115
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   116
subsection {*Basic Lemmas*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   117
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   118
lemma Gets_imp_Says:
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   119
     "[| Gets B X \<in> set evs; evs \<in> zg |] ==> \<exists>A. Says A B X \<in> set evs"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   120
apply (erule rev_mp)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   121
apply (erule zg.induct, auto)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   122
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   123
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   124
lemma Gets_imp_knows_Spy:
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   125
     "[| Gets B X \<in> set evs; evs \<in> zg |]  ==> X \<in> spies evs"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   126
by (blast dest!: Gets_imp_Says Says_imp_knows_Spy)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   127
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   128
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   129
text{*Lets us replace proofs about @{term "used evs"} by simpler proofs 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   130
about @{term "parts (spies evs)"}.*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   131
lemma Crypt_used_imp_spies:
14736
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
   132
     "[| Crypt K X \<in> used evs; evs \<in> zg |]
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   133
      ==> Crypt K X \<in> parts (spies evs)"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   134
apply (erule rev_mp)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   135
apply (erule zg.induct)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   136
apply (simp_all add: parts_insert_knows_A) 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   137
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   138
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   139
lemma Notes_TTP_imp_Gets:
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   140
     "[|Notes TTP {|Number f_con, Agent A, Agent B, Nonce L, Key K, con_K |}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   141
           \<in> set evs;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   142
        sub_K = Crypt (priK A) {|Number f_sub, Agent B, Nonce L, Key K|};
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   143
        evs \<in> zg|]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   144
    ==> Gets TTP {|Number f_sub, Agent B, Nonce L, Key K, sub_K|} \<in> set evs"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   145
apply (erule rev_mp)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   146
apply (erule zg.induct, auto)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   147
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   148
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   149
text{*For reasoning about C, which is encrypted in message ZG2*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   150
lemma ZG2_msg_in_parts_spies:
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   151
     "[|Gets B {|F, B', L, C, X|} \<in> set evs; evs \<in> zg|]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   152
      ==> C \<in> parts (spies evs)"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   153
by (blast dest: Gets_imp_Says)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   154
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   155
(*classical regularity lemma on priK*)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   156
lemma Spy_see_priK [simp]:
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   157
     "evs \<in> zg ==> (Key (priK A) \<in> parts (spies evs)) = (A \<in> bad)"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   158
apply (erule zg.induct)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   159
apply (frule_tac [5] ZG2_msg_in_parts_spies, auto)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   160
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   161
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   162
text{*So that blast can use it too*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   163
declare  Spy_see_priK [THEN [2] rev_iffD1, dest!]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   164
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   165
lemma Spy_analz_priK [simp]:
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   166
     "evs \<in> zg ==> (Key (priK A) \<in> analz (spies evs)) = (A \<in> bad)"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   167
by auto 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   168
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   169
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   170
subsection{*About NRO: Validity for @{term B}*}
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   171
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   172
text{*Below we prove that if @{term NRO} exists then @{term A} definitely
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   173
sent it, provided @{term A} is not broken.*}
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   174
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   175
text{*Strong conclusion for a good agent*}
15068
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   176
lemma NRO_validity_good:
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   177
     "[|NRO = Crypt (priK A) {|Number f_nro, Agent B, Nonce L, C|};
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   178
        NRO \<in> parts (spies evs);
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   179
        A \<notin> bad;  evs \<in> zg |]
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   180
     ==> Says A B {|Number f_nro, Agent B, Nonce L, C, NRO|} \<in> set evs"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   181
apply clarify
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   182
apply (erule rev_mp)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   183
apply (erule zg.induct)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   184
apply (frule_tac [5] ZG2_msg_in_parts_spies, auto)  
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   185
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   186
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   187
lemma NRO_sender:
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   188
     "[|Says A' B {|n, b, l, C, Crypt (priK A) X|} \<in> set evs; evs \<in> zg|]
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   189
    ==> A' \<in> {A,Spy}"
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   190
apply (erule rev_mp)  
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   191
apply (erule zg.induct, simp_all)
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   192
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   193
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   194
text{*Holds also for @{term "A = Spy"}!*}
15068
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   195
theorem NRO_validity:
15047
fa62de5862b9 redefining sumr to be a translation to setsum
paulson
parents: 14741
diff changeset
   196
     "[|Gets B {|Number f_nro, Agent B, Nonce L, C, NRO|} \<in> set evs;
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   197
        NRO = Crypt (priK A) {|Number f_nro, Agent B, Nonce L, C|};
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   198
        A \<notin> broken;  evs \<in> zg |]
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   199
     ==> Says A B {|Number f_nro, Agent B, Nonce L, C, NRO|} \<in> set evs"
15047
fa62de5862b9 redefining sumr to be a translation to setsum
paulson
parents: 14741
diff changeset
   200
apply (drule Gets_imp_Says, assumption) 
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   201
apply clarify 
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   202
apply (frule NRO_sender, auto)
15047
fa62de5862b9 redefining sumr to be a translation to setsum
paulson
parents: 14741
diff changeset
   203
txt{*We are left with the case where the sender is @{term Spy} and not
fa62de5862b9 redefining sumr to be a translation to setsum
paulson
parents: 14741
diff changeset
   204
  equal to @{term A}, because @{term "A \<notin> bad"}. 
15068
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   205
  Thus theorem @{text NRO_validity_good} applies.*}
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   206
apply (blast dest: NRO_validity_good [OF refl])
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   207
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   208
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   209
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   210
subsection{*About NRR: Validity for @{term A}*}
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   211
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   212
text{*Below we prove that if @{term NRR} exists then @{term B} definitely
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   213
sent it, provided @{term B} is not broken.*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   214
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   215
text{*Strong conclusion for a good agent*}
15068
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   216
lemma NRR_validity_good:
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   217
     "[|NRR = Crypt (priK B) {|Number f_nrr, Agent A, Nonce L, C|};
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   218
        NRR \<in> parts (spies evs);
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   219
        B \<notin> bad;  evs \<in> zg |]
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   220
     ==> Says B A {|Number f_nrr, Agent A, Nonce L, NRR|} \<in> set evs"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   221
apply clarify
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   222
apply (erule rev_mp)
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   223
apply (erule zg.induct) 
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   224
apply (frule_tac [5] ZG2_msg_in_parts_spies, auto)  
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   225
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   226
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   227
lemma NRR_sender:
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   228
     "[|Says B' A {|n, a, l, Crypt (priK B) X|} \<in> set evs; evs \<in> zg|]
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   229
    ==> B' \<in> {B,Spy}"
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   230
apply (erule rev_mp)  
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   231
apply (erule zg.induct, simp_all)
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   232
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   233
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   234
text{*Holds also for @{term "B = Spy"}!*}
15068
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   235
theorem NRR_validity:
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   236
     "[|Says B' A {|Number f_nrr, Agent A, Nonce L, NRR|} \<in> set evs;
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   237
        NRR = Crypt (priK B) {|Number f_nrr, Agent A, Nonce L, C|};
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   238
        B \<notin> broken; evs \<in> zg|]
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   239
    ==> Says B A {|Number f_nrr, Agent A, Nonce L, NRR|} \<in> set evs"
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   240
apply clarify 
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   241
apply (frule NRR_sender, auto)
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   242
txt{*We are left with the case where @{term "B' = Spy"} and  @{term "B' \<noteq> B"},
15068
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   243
  i.e. @{term "B \<notin> bad"}, when we can apply @{text NRR_validity_good}.*}
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   244
 apply (blast dest: NRR_validity_good [OF refl])
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   245
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   246
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   247
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   248
subsection{*Proofs About @{term sub_K}*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   249
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   250
text{*Below we prove that if @{term sub_K} exists then @{term A} definitely
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   251
sent it, provided @{term A} is not broken.  *}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   252
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   253
text{*Strong conclusion for a good agent*}
15068
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   254
lemma sub_K_validity_good:
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   255
     "[|sub_K = Crypt (priK A) {|Number f_sub, Agent B, Nonce L, Key K|};
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   256
        sub_K \<in> parts (spies evs);
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   257
        A \<notin> bad;  evs \<in> zg |]
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   258
     ==> Says A TTP {|Number f_sub, Agent B, Nonce L, Key K, sub_K|} \<in> set evs"
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   259
apply clarify
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   260
apply (erule rev_mp)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   261
apply (erule zg.induct)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   262
apply (frule_tac [5] ZG2_msg_in_parts_spies, simp_all)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   263
txt{*Fake*} 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   264
apply (blast dest!: Fake_parts_sing_imp_Un)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   265
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   266
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   267
lemma sub_K_sender:
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   268
     "[|Says A' TTP {|n, b, l, k, Crypt (priK A) X|} \<in> set evs;  evs \<in> zg|]
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   269
    ==> A' \<in> {A,Spy}"
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   270
apply (erule rev_mp)  
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   271
apply (erule zg.induct, simp_all)
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   272
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   273
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   274
text{*Holds also for @{term "A = Spy"}!*}
15068
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   275
theorem sub_K_validity:
15047
fa62de5862b9 redefining sumr to be a translation to setsum
paulson
parents: 14741
diff changeset
   276
     "[|Gets TTP {|Number f_sub, Agent B, Nonce L, Key K, sub_K|} \<in> set evs;
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   277
        sub_K = Crypt (priK A) {|Number f_sub, Agent B, Nonce L, Key K|};
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   278
        A \<notin> broken;  evs \<in> zg |]
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   279
     ==> Says A TTP {|Number f_sub, Agent B, Nonce L, Key K, sub_K|} \<in> set evs"
15047
fa62de5862b9 redefining sumr to be a translation to setsum
paulson
parents: 14741
diff changeset
   280
apply (drule Gets_imp_Says, assumption) 
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   281
apply clarify 
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   282
apply (frule sub_K_sender, auto)
15047
fa62de5862b9 redefining sumr to be a translation to setsum
paulson
parents: 14741
diff changeset
   283
txt{*We are left with the case where the sender is @{term Spy} and not
fa62de5862b9 redefining sumr to be a translation to setsum
paulson
parents: 14741
diff changeset
   284
  equal to @{term A}, because @{term "A \<notin> bad"}. 
15068
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   285
  Thus theorem @{text sub_K_validity_good} applies.*}
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   286
apply (blast dest: sub_K_validity_good [OF refl])
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   287
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   288
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   289
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   290
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   291
subsection{*Proofs About @{term con_K}*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   292
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   293
text{*Below we prove that if @{term con_K} exists, then @{term TTP} has it,
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   294
and therefore @{term A} and @{term B}) can get it too.  Moreover, we know
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   295
that @{term A} sent @{term sub_K}*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   296
15068
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   297
lemma con_K_validity:
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   298
     "[|con_K \<in> used evs;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   299
        con_K = Crypt (priK TTP)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   300
                  {|Number f_con, Agent A, Agent B, Nonce L, Key K|};
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   301
        evs \<in> zg |]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   302
    ==> Notes TTP {|Number f_con, Agent A, Agent B, Nonce L, Key K, con_K|}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   303
          \<in> set evs"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   304
apply clarify
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   305
apply (erule rev_mp)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   306
apply (erule zg.induct)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   307
apply (frule_tac [5] ZG2_msg_in_parts_spies, simp_all)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   308
txt{*Fake*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   309
apply (blast dest!: Fake_parts_sing_imp_Un)
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   310
txt{*ZG2*} 
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   311
apply (blast dest: parts_cut)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   312
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   313
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   314
text{*If @{term TTP} holds @{term con_K} then @{term A} sent
14736
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
   315
 @{term sub_K}.  We assume that @{term A} is not broken.  Importantly, nothing
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
   316
  needs to be assumed about the form of @{term con_K}!*}
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   317
lemma Notes_TTP_imp_Says_A:
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   318
     "[|Notes TTP {|Number f_con, Agent A, Agent B, Nonce L, Key K, con_K|}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   319
           \<in> set evs;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   320
        sub_K = Crypt (priK A) {|Number f_sub, Agent B, Nonce L, Key K|};
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   321
        A \<notin> broken; evs \<in> zg|]
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   322
     ==> Says A TTP {|Number f_sub, Agent B, Nonce L, Key K, sub_K|} \<in> set evs"
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   323
apply clarify
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   324
apply (erule rev_mp)
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   325
apply (erule zg.induct)
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   326
apply (frule_tac [5] ZG2_msg_in_parts_spies, simp_all)
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   327
txt{*ZG4*}
15047
fa62de5862b9 redefining sumr to be a translation to setsum
paulson
parents: 14741
diff changeset
   328
apply clarify 
15068
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   329
apply (rule sub_K_validity, auto) 
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   330
done
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   331
14736
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
   332
text{*If @{term con_K} exists, then @{term A} sent @{term sub_K}.  We again
7104394df99a broken no longer includes TTP, and other minor changes
paulson
parents: 14207
diff changeset
   333
   assume that @{term A} is not broken. *}
15068
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   334
theorem B_sub_K_validity:
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   335
     "[|con_K \<in> used evs;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   336
        con_K = Crypt (priK TTP) {|Number f_con, Agent A, Agent B,
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   337
                                   Nonce L, Key K|};
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   338
        sub_K = Crypt (priK A) {|Number f_sub, Agent B, Nonce L, Key K|};
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   339
        A \<notin> broken; evs \<in> zg|]
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   340
     ==> Says A TTP {|Number f_sub, Agent B, Nonce L, Key K, sub_K|} \<in> set evs"
15068
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   341
by (blast dest: con_K_validity Notes_TTP_imp_Says_A)
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   342
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   343
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   344
subsection{*Proving fairness*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   345
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   346
text{*Cannot prove that, if @{term B} has NRO, then  @{term A} has her NRR.
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   347
It would appear that @{term B} has a small advantage, though it is
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   348
useless to win disputes: @{term B} needs to present @{term con_K} as well.*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   349
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   350
text{*Strange: unicity of the label protects @{term A}?*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   351
lemma A_unicity: 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   352
     "[|NRO = Crypt (priK A) {|Number f_nro, Agent B, Nonce L, Crypt K M|};
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   353
        NRO \<in> parts (spies evs);
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   354
        Says A B {|Number f_nro, Agent B, Nonce L, Crypt K M', NRO'|}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   355
          \<in> set evs;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   356
        A \<notin> bad; evs \<in> zg |]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   357
     ==> M'=M"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   358
apply clarify
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   359
apply (erule rev_mp)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   360
apply (erule rev_mp)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   361
apply (erule zg.induct)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   362
apply (frule_tac [5] ZG2_msg_in_parts_spies, auto) 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   363
txt{*ZG1: freshness*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   364
apply (blast dest: parts.Body) 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   365
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   366
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   367
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   368
text{*Fairness lemma: if @{term sub_K} exists, then @{term A} holds 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   369
NRR.  Relies on unicity of labels.*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   370
lemma sub_K_implies_NRR:
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   371
     "[| NRO = Crypt (priK A) {|Number f_nro, Agent B, Nonce L, Crypt K M|};
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   372
         NRR = Crypt (priK B) {|Number f_nrr, Agent A, Nonce L, Crypt K M|};
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   373
         sub_K \<in> parts (spies evs);
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   374
         NRO \<in> parts (spies evs);
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   375
         sub_K = Crypt (priK A) {|Number f_sub, Agent B, Nonce L, Key K|};
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   376
         A \<notin> bad;  evs \<in> zg |]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   377
     ==> Gets A {|Number f_nrr, Agent A, Nonce L, NRR|} \<in> set evs"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   378
apply clarify
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   379
apply (erule rev_mp)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   380
apply (erule rev_mp)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   381
apply (erule zg.induct)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   382
apply (frule_tac [5] ZG2_msg_in_parts_spies, simp_all)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   383
txt{*Fake*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   384
apply blast 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   385
txt{*ZG1: freshness*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   386
apply (blast dest: parts.Body) 
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   387
txt{*ZG3*} 
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   388
apply (blast dest: A_unicity [OF refl]) 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   389
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   390
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   391
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   392
lemma Crypt_used_imp_L_used:
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   393
     "[| Crypt (priK TTP) {|F, A, B, L, K|} \<in> used evs; evs \<in> zg |]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   394
      ==> L \<in> used evs"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   395
apply (erule rev_mp)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   396
apply (erule zg.induct, auto)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   397
txt{*Fake*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   398
apply (blast dest!: Fake_parts_sing_imp_Un)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   399
txt{*ZG2: freshness*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   400
apply (blast dest: parts.Body) 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   401
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   402
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   403
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   404
text{*Fairness for @{term A}: if @{term con_K} and @{term NRO} exist, 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   405
then @{term A} holds NRR.  @{term A} must be uncompromised, but there is no
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   406
assumption about @{term B}.*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   407
theorem A_fairness_NRO:
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   408
     "[|con_K \<in> used evs;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   409
        NRO \<in> parts (spies evs);
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   410
        con_K = Crypt (priK TTP)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   411
                      {|Number f_con, Agent A, Agent B, Nonce L, Key K|};
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   412
        NRO = Crypt (priK A) {|Number f_nro, Agent B, Nonce L, Crypt K M|};
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   413
        NRR = Crypt (priK B) {|Number f_nrr, Agent A, Nonce L, Crypt K M|};
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   414
        A \<notin> bad;  evs \<in> zg |]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   415
    ==> Gets A {|Number f_nrr, Agent A, Nonce L, NRR|} \<in> set evs"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   416
apply clarify
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   417
apply (erule rev_mp)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   418
apply (erule rev_mp)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   419
apply (erule zg.induct)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   420
apply (frule_tac [5] ZG2_msg_in_parts_spies, simp_all)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   421
   txt{*Fake*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   422
   apply (simp add: parts_insert_knows_A) 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   423
   apply (blast dest: Fake_parts_sing_imp_Un) 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   424
  txt{*ZG1*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   425
  apply (blast dest: Crypt_used_imp_L_used) 
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   426
 txt{*ZG2*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   427
 apply (blast dest: parts_cut)
14741
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   428
txt{*ZG4*} 
36582c356db7 simpilified and strengthened proofs
paulson
parents: 14736
diff changeset
   429
apply (blast intro: sub_K_implies_NRR [OF refl] 
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   430
             dest: Gets_imp_knows_Spy [THEN parts.Inj])
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   431
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   432
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   433
text{*Fairness for @{term B}: NRR exists at all, then @{term B} holds NRO.
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   434
@{term B} must be uncompromised, but there is no assumption about @{term
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   435
A}. *}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   436
theorem B_fairness_NRR:
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   437
     "[|NRR \<in> used evs;
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   438
        NRR = Crypt (priK B) {|Number f_nrr, Agent A, Nonce L, C|};
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   439
        NRO = Crypt (priK A) {|Number f_nro, Agent B, Nonce L, C|};
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   440
        B \<notin> bad; evs \<in> zg |]
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   441
    ==> Gets B {|Number f_nro, Agent B, Nonce L, C, NRO|} \<in> set evs"
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   442
apply clarify
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   443
apply (erule rev_mp)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   444
apply (erule zg.induct)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   445
apply (frule_tac [5] ZG2_msg_in_parts_spies, simp_all)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   446
txt{*Fake*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   447
apply (blast dest!: Fake_parts_sing_imp_Un)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   448
txt{*ZG2*}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   449
apply (blast dest: parts_cut)
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   450
done
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   451
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   452
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   453
text{*If @{term con_K} exists at all, then @{term B} can get it, by @{text
15068
58d216b32199 minor tweaks to go with the new version of the Accountability paper
paulson
parents: 15047
diff changeset
   454
con_K_validity}.  Cannot conclude that also NRO is available to @{term B},
14145
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   455
because if @{term A} were unfair, @{term A} could build message 3 without
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   456
building message 1, which contains NRO. *}
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   457
2e31b8cc8788 ZhouGollmann: new example (fair non-repudiation protocol)
paulson
parents:
diff changeset
   458
end