src/HOL/SET_Protocol/Cardholder_Registration.thy
author wenzelm
Thu, 26 May 2016 17:51:22 +0200
changeset 63167 0909deb8059b
parent 61984 cdea44c775fa
child 63648 f9f3006a5579
permissions -rw-r--r--
isabelle update_cartouches -c -t;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33028
9aa8bfb1649d modernized session SET_Protocol;
wenzelm
parents: 32960
diff changeset
     1
(*  Title:      HOL/SET_Protocol/Cardholder_Registration.thy
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
     2
    Author:     Giampaolo Bella
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
     3
    Author:     Fabio Massacci
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
     4
    Author:     Lawrence C Paulson
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
     5
    Author:     Piero Tramontano
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
     6
*)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
     7
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
     8
section\<open>The SET Cardholder Registration Protocol\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
     9
33028
9aa8bfb1649d modernized session SET_Protocol;
wenzelm
parents: 32960
diff changeset
    10
theory Cardholder_Registration
9aa8bfb1649d modernized session SET_Protocol;
wenzelm
parents: 32960
diff changeset
    11
imports Public_SET
9aa8bfb1649d modernized session SET_Protocol;
wenzelm
parents: 32960
diff changeset
    12
begin
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    13
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
    14
text\<open>Note: nonces seem to consist of 20 bytes.  That includes both freshness
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    15
challenges (Chall-EE, etc.) and important secrets (CardSecret, PANsecret)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
    16
\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    17
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
    18
text\<open>Simplifications involving \<open>analz_image_keys_simps\<close> appear to
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    19
have become much slower. The cause is unclear. However, there is a big blow-up
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
    20
and the rewriting is very sensitive to the set of rewrite rules given.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    21
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
    22
subsection\<open>Predicate Formalizing the Encryption Association between Keys\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    23
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    24
primrec KeyCryptKey :: "[key, key, event list] => bool"
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    25
where
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    26
  KeyCryptKey_Nil:
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    27
    "KeyCryptKey DK K [] = False"
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    28
| KeyCryptKey_Cons:
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
    29
      \<comment>\<open>Says is the only important case.
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    30
        1st case: CR5, where KC3 encrypts KC2.
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    31
        2nd case: any use of priEK C.
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    32
        Revision 1.12 has a more complicated version with separate treatment of
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    33
          the dependency of KC1, KC2 and KC3 on priEK (CA i.)  Not needed since
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
    34
          priEK C is never sent (and so can't be lost except at the start).\<close>
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    35
    "KeyCryptKey DK K (ev # evs) =
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    36
     (KeyCryptKey DK K evs |
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    37
      (case ev of
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    38
        Says A B Z =>
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    39
         ((\<exists>N X Y. A \<noteq> Spy &
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    40
                 DK \<in> symKeys &
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
    41
                 Z = \<lbrace>Crypt DK \<lbrace>Agent A, Nonce N, Key K, X\<rbrace>, Y\<rbrace>) |
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    42
          (\<exists>C. DK = priEK C))
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    43
      | Gets A' X => False
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    44
      | Notes A' X => False))"
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    45
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    46
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
    47
subsection\<open>Predicate formalizing the association between keys and nonces\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    48
39758
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    49
primrec KeyCryptNonce :: "[key, key, event list] => bool"
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    50
where
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    51
  KeyCryptNonce_Nil:
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    52
    "KeyCryptNonce EK K [] = False"
b8a53e3a0ee2 modernized primrecs
haftmann
parents: 33028
diff changeset
    53
| KeyCryptNonce_Cons:
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
    54
  \<comment>\<open>Says is the only important case.
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    55
    1st case: CR3, where KC1 encrypts NC2 (distinct from CR5 due to EXH);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    56
    2nd case: CR5, where KC3 encrypts NC3;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    57
    3rd case: CR6, where KC2 encrypts NC3;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    58
    4th case: CR6, where KC2 encrypts NonceCCA;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    59
    5th case: any use of @{term "priEK C"} (including CardSecret).
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    60
    NB the only Nonces we need to keep secret are CardSecret and NonceCCA.
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
    61
    But we can't prove \<open>Nonce_compromise\<close> unless the relation covers ALL
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    62
        nonces that the protocol keeps secret.
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
    63
\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    64
  "KeyCryptNonce DK N (ev # evs) =
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    65
   (KeyCryptNonce DK N evs |
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    66
    (case ev of
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    67
      Says A B Z =>
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    68
       A \<noteq> Spy &
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    69
       ((\<exists>X Y. DK \<in> symKeys &
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
    70
               Z = (EXHcrypt DK X \<lbrace>Agent A, Nonce N\<rbrace> Y)) |
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    71
        (\<exists>X Y. DK \<in> symKeys &
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
    72
               Z = \<lbrace>Crypt DK \<lbrace>Agent A, Nonce N, X\<rbrace>, Y\<rbrace>) |
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    73
        (\<exists>K i X Y.
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    74
          K \<in> symKeys &
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
    75
          Z = Crypt K \<lbrace>sign (priSK (CA i)) \<lbrace>Agent B, Nonce N, X\<rbrace>, Y\<rbrace> &
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    76
          (DK=K | KeyCryptKey DK K evs)) |
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    77
        (\<exists>K C NC3 Y.
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    78
          K \<in> symKeys &
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    79
          Z = Crypt K
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
    80
                \<lbrace>sign (priSK C) \<lbrace>Agent B, Nonce NC3, Agent C, Nonce N\<rbrace>,
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
    81
                  Y\<rbrace> &
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    82
          (DK=K | KeyCryptKey DK K evs)) |
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    83
        (\<exists>C. DK = priEK C))
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    84
    | Gets A' X => False
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    85
    | Notes A' X => False))"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    86
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    87
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
    88
subsection\<open>Formal protocol definition\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    89
23755
1c4672d130b1 Adapted to new inductive definition package.
berghofe
parents: 16417
diff changeset
    90
inductive_set
1c4672d130b1 Adapted to new inductive definition package.
berghofe
parents: 16417
diff changeset
    91
  set_cr :: "event list set"
1c4672d130b1 Adapted to new inductive definition package.
berghofe
parents: 16417
diff changeset
    92
where
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    93
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
    94
  Nil:    \<comment>\<open>Initial trace is empty\<close>
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    95
          "[] \<in> set_cr"
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
    96
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
    97
| Fake:    \<comment>\<open>The spy MAY say anything he CAN say.\<close>
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    98
           "[| evsf \<in> set_cr; X \<in> synth (analz (knows Spy evsf)) |]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
    99
            ==> Says Spy B X  # evsf \<in> set_cr"
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   100
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   101
| Reception: \<comment>\<open>If A sends a message X to B, then B might receive it\<close>
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   102
             "[| evsr \<in> set_cr; Says A B X \<in> set evsr |]
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   103
              ==> Gets B X  # evsr \<in> set_cr"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   104
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   105
| SET_CR1: \<comment>\<open>CardCInitReq: C initiates a run, sending a nonce to CCA\<close>
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   106
             "[| evs1 \<in> set_cr;  C = Cardholder k;  Nonce NC1 \<notin> used evs1 |]
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   107
              ==> Says C (CA i) \<lbrace>Agent C, Nonce NC1\<rbrace> # evs1 \<in> set_cr"
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   108
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   109
| SET_CR2: \<comment>\<open>CardCInitRes: CA responds sending NC1 and its certificates\<close>
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   110
             "[| evs2 \<in> set_cr;
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   111
                 Gets (CA i) \<lbrace>Agent C, Nonce NC1\<rbrace> \<in> set evs2 |]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   112
              ==> Says (CA i) C
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   113
                       \<lbrace>sign (priSK (CA i)) \<lbrace>Agent C, Nonce NC1\<rbrace>,
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   114
                         cert (CA i) (pubEK (CA i)) onlyEnc (priSK RCA),
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   115
                         cert (CA i) (pubSK (CA i)) onlySig (priSK RCA)\<rbrace>
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   116
                    # evs2 \<in> set_cr"
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   117
23755
1c4672d130b1 Adapted to new inductive definition package.
berghofe
parents: 16417
diff changeset
   118
| SET_CR3:
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   119
   \<comment>\<open>RegFormReq: C sends his PAN and a new nonce to CA.
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   120
   C verifies that
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   121
    - nonce received is the same as that sent;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   122
    - certificates are signed by RCA;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   123
    - certificates are an encryption certificate (flag is onlyEnc) and a
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   124
      signature certificate (flag is onlySig);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   125
    - certificates pertain to the CA that C contacted (this is done by
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   126
      checking the signature).
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   127
   C generates a fresh symmetric key KC1.
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   128
   The point of encrypting @{term "\<lbrace>Agent C, Nonce NC2, Hash (Pan(pan C))\<rbrace>"}
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   129
   is not clear.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   130
"[| evs3 \<in> set_cr;  C = Cardholder k;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   131
    Nonce NC2 \<notin> used evs3;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   132
    Key KC1 \<notin> used evs3; KC1 \<in> symKeys;
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   133
    Gets C \<lbrace>sign (invKey SKi) \<lbrace>Agent X, Nonce NC1\<rbrace>,
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   134
             cert (CA i) EKi onlyEnc (priSK RCA),
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   135
             cert (CA i) SKi onlySig (priSK RCA)\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   136
       \<in> set evs3;
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   137
    Says C (CA i) \<lbrace>Agent C, Nonce NC1\<rbrace> \<in> set evs3|]
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   138
 ==> Says C (CA i) (EXHcrypt KC1 EKi \<lbrace>Agent C, Nonce NC2\<rbrace> (Pan(pan C)))
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   139
       # Notes C \<lbrace>Key KC1, Agent (CA i)\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   140
       # evs3 \<in> set_cr"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   141
23755
1c4672d130b1 Adapted to new inductive definition package.
berghofe
parents: 16417
diff changeset
   142
| SET_CR4:
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   143
    \<comment>\<open>RegFormRes:
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   144
    CA responds sending NC2 back with a new nonce NCA, after checking that
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   145
     - the digital envelope is correctly encrypted by @{term "pubEK (CA i)"}
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   146
     - the entire message is encrypted with the same key found inside the
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   147
       envelope (here, KC1)\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   148
"[| evs4 \<in> set_cr;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   149
    Nonce NCA \<notin> used evs4;  KC1 \<in> symKeys;
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   150
    Gets (CA i) (EXHcrypt KC1 EKi \<lbrace>Agent C, Nonce NC2\<rbrace> (Pan(pan X)))
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   151
       \<in> set evs4 |]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   152
  ==> Says (CA i) C
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   153
          \<lbrace>sign (priSK (CA i)) \<lbrace>Agent C, Nonce NC2, Nonce NCA\<rbrace>,
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   154
            cert (CA i) (pubEK (CA i)) onlyEnc (priSK RCA),
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   155
            cert (CA i) (pubSK (CA i)) onlySig (priSK RCA)\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   156
       # evs4 \<in> set_cr"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   157
23755
1c4672d130b1 Adapted to new inductive definition package.
berghofe
parents: 16417
diff changeset
   158
| SET_CR5:
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   159
   \<comment>\<open>CertReq: C sends his PAN, a new nonce, its proposed public signature key
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   160
       and its half of the secret value to CA.
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   161
       We now assume that C has a fixed key pair, and he submits (pubSK C).
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   162
       The protocol does not require this key to be fresh.
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   163
       The encryption below is actually EncX.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   164
"[| evs5 \<in> set_cr;  C = Cardholder k;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   165
    Nonce NC3 \<notin> used evs5;  Nonce CardSecret \<notin> used evs5; NC3\<noteq>CardSecret;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   166
    Key KC2 \<notin> used evs5; KC2 \<in> symKeys;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   167
    Key KC3 \<notin> used evs5; KC3 \<in> symKeys; KC2\<noteq>KC3;
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   168
    Gets C \<lbrace>sign (invKey SKi) \<lbrace>Agent C, Nonce NC2, Nonce NCA\<rbrace>,
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   169
             cert (CA i) EKi onlyEnc (priSK RCA),
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   170
             cert (CA i) SKi onlySig (priSK RCA) \<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   171
        \<in> set evs5;
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   172
    Says C (CA i) (EXHcrypt KC1 EKi \<lbrace>Agent C, Nonce NC2\<rbrace> (Pan(pan C)))
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   173
         \<in> set evs5 |]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   174
==> Says C (CA i)
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   175
         \<lbrace>Crypt KC3
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   176
             \<lbrace>Agent C, Nonce NC3, Key KC2, Key (pubSK C),
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   177
               Crypt (priSK C)
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   178
                 (Hash \<lbrace>Agent C, Nonce NC3, Key KC2,
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   179
                         Key (pubSK C), Pan (pan C), Nonce CardSecret\<rbrace>)\<rbrace>,
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   180
           Crypt EKi \<lbrace>Key KC3, Pan (pan C), Nonce CardSecret\<rbrace> \<rbrace>
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   181
    # Notes C \<lbrace>Key KC2, Agent (CA i)\<rbrace>
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   182
    # Notes C \<lbrace>Key KC3, Agent (CA i)\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   183
    # evs5 \<in> set_cr"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   184
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   185
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   186
  \<comment>\<open>CertRes: CA responds sending NC3 back with its half of the secret value,
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   187
   its signature certificate and the new cardholder signature
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   188
   certificate.  CA checks to have never certified the key proposed by C.
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   189
   NOTE: In Merchant Registration, the corresponding rule (4)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   190
   uses the "sign" primitive. The encryption below is actually @{term EncK}, 
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   191
   which is just @{term "Crypt K (sign SK X)"}.
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   192
\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   193
23755
1c4672d130b1 Adapted to new inductive definition package.
berghofe
parents: 16417
diff changeset
   194
| SET_CR6:
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   195
"[| evs6 \<in> set_cr;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   196
    Nonce NonceCCA \<notin> used evs6;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   197
    KC2 \<in> symKeys;  KC3 \<in> symKeys;  cardSK \<notin> symKeys;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   198
    Notes (CA i) (Key cardSK) \<notin> set evs6;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   199
    Gets (CA i)
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   200
      \<lbrace>Crypt KC3 \<lbrace>Agent C, Nonce NC3, Key KC2, Key cardSK,
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   201
                    Crypt (invKey cardSK)
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   202
                      (Hash \<lbrace>Agent C, Nonce NC3, Key KC2,
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   203
                              Key cardSK, Pan (pan C), Nonce CardSecret\<rbrace>)\<rbrace>,
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   204
        Crypt (pubEK (CA i)) \<lbrace>Key KC3, Pan (pan C), Nonce CardSecret\<rbrace> \<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   205
      \<in> set evs6 |]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   206
==> Says (CA i) C
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   207
         (Crypt KC2
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   208
          \<lbrace>sign (priSK (CA i))
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   209
                 \<lbrace>Agent C, Nonce NC3, Agent(CA i), Nonce NonceCCA\<rbrace>,
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   210
            certC (pan C) cardSK (XOR(CardSecret,NonceCCA)) onlySig (priSK (CA i)),
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   211
            cert (CA i) (pubSK (CA i)) onlySig (priSK RCA)\<rbrace>)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   212
      # Notes (CA i) (Key cardSK)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   213
      # evs6 \<in> set_cr"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   214
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   215
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   216
declare Says_imp_knows_Spy [THEN parts.Inj, dest]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   217
declare parts.Body [dest]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   218
declare analz_into_parts [dest]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   219
declare Fake_parts_insert_in_Un [dest]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   220
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   221
text\<open>A "possibility property": there are traces that reach the end.
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   222
      An unconstrained proof with many subgoals.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   223
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   224
lemma Says_to_Gets:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   225
     "Says A B X # evs \<in> set_cr ==> Gets B X # Says A B X # evs \<in> set_cr"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   226
by (rule set_cr.Reception, auto)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   227
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   228
text\<open>The many nonces and keys generated, some simultaneously, force us to
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   229
  introduce them explicitly as shown below.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   230
lemma possibility_CR6:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   231
     "[|NC1 < (NC2::nat);  NC2 < NC3;  NC3 < NCA ;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   232
        NCA < NonceCCA;  NonceCCA < CardSecret;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   233
        KC1 < (KC2::key);  KC2 < KC3;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   234
        KC1 \<in> symKeys;  Key KC1 \<notin> used [];
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   235
        KC2 \<in> symKeys;  Key KC2 \<notin> used [];
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   236
        KC3 \<in> symKeys;  Key KC3 \<notin> used [];
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   237
        C = Cardholder k|]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   238
   ==> \<exists>evs \<in> set_cr.
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   239
       Says (CA i) C
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   240
            (Crypt KC2
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   241
             \<lbrace>sign (priSK (CA i))
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   242
                    \<lbrace>Agent C, Nonce NC3, Agent(CA i), Nonce NonceCCA\<rbrace>,
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   243
               certC (pan C) (pubSK (Cardholder k)) (XOR(CardSecret,NonceCCA))
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   244
                     onlySig (priSK (CA i)),
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   245
               cert (CA i) (pubSK (CA i)) onlySig (priSK RCA)\<rbrace>)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   246
          \<in> set evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   247
apply (intro exI bexI)
14206
77bf175f5145 Tidying of SET's "possibility theorems" (removal of Key_supply_ax)
paulson
parents: 14199
diff changeset
   248
apply (rule_tac [2] 
77bf175f5145 Tidying of SET's "possibility theorems" (removal of Key_supply_ax)
paulson
parents: 14199
diff changeset
   249
       set_cr.Nil 
77bf175f5145 Tidying of SET's "possibility theorems" (removal of Key_supply_ax)
paulson
parents: 14199
diff changeset
   250
        [THEN set_cr.SET_CR1 [of concl: C i NC1], 
77bf175f5145 Tidying of SET's "possibility theorems" (removal of Key_supply_ax)
paulson
parents: 14199
diff changeset
   251
         THEN Says_to_Gets, 
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   252
         THEN set_cr.SET_CR2 [of concl: i C NC1], 
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   253
         THEN Says_to_Gets,  
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   254
         THEN set_cr.SET_CR3 [of concl: C i KC1 _ NC2], 
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   255
         THEN Says_to_Gets,  
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   256
         THEN set_cr.SET_CR4 [of concl: i C NC2 NCA], 
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   257
         THEN Says_to_Gets,  
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   258
         THEN set_cr.SET_CR5 [of concl: C i KC3 NC3 KC2 CardSecret],
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   259
         THEN Says_to_Gets,  
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32404
diff changeset
   260
         THEN set_cr.SET_CR6 [of concl: i C KC2]])
30607
c3d1590debd8 eliminated global SIMPSET, CLASET etc. -- refer to explicit context;
wenzelm
parents: 30549
diff changeset
   261
apply basic_possibility
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   262
apply (simp_all (no_asm_simp) add: symKeys_neq_imp_neq)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   263
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   264
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   265
text\<open>General facts about message reception\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   266
lemma Gets_imp_Says:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   267
     "[| Gets B X \<in> set evs; evs \<in> set_cr |] ==> \<exists>A. Says A B X \<in> set evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   268
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   269
apply (erule set_cr.induct, auto)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   270
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   271
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   272
lemma Gets_imp_knows_Spy:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   273
     "[| Gets B X \<in> set evs; evs \<in> set_cr |]  ==> X \<in> knows Spy evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   274
by (blast dest!: Gets_imp_Says Says_imp_knows_Spy)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   275
declare Gets_imp_knows_Spy [THEN parts.Inj, dest]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   276
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   277
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   278
subsection\<open>Proofs on keys\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   279
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   280
text\<open>Spy never sees an agent's private keys! (unless it's bad at start)\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   281
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   282
lemma Spy_see_private_Key [simp]:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   283
     "evs \<in> set_cr
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   284
      ==> (Key(invKey (publicKey b A)) \<in> parts(knows Spy evs)) = (A \<in> bad)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   285
by (erule set_cr.induct, auto)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   286
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   287
lemma Spy_analz_private_Key [simp]:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   288
     "evs \<in> set_cr ==>
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   289
     (Key(invKey (publicKey b A)) \<in> analz(knows Spy evs)) = (A \<in> bad)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   290
by auto
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   291
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   292
declare Spy_see_private_Key [THEN [2] rev_iffD1, dest!]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   293
declare Spy_analz_private_Key [THEN [2] rev_iffD1, dest!]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   294
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   295
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   296
subsection\<open>Begin Piero's Theorems on Certificates\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   297
text\<open>Trivial in the current model, where certificates by RCA are secure\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   298
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   299
lemma Crypt_valid_pubEK:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   300
     "[| Crypt (priSK RCA) \<lbrace>Agent C, Key EKi, onlyEnc\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   301
           \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   302
         evs \<in> set_cr |] ==> EKi = pubEK C"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   303
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   304
apply (erule set_cr.induct, auto)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   305
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   306
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   307
lemma certificate_valid_pubEK:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   308
    "[| cert C EKi onlyEnc (priSK RCA) \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   309
        evs \<in> set_cr |]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   310
     ==> EKi = pubEK C"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   311
apply (unfold cert_def signCert_def)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   312
apply (blast dest!: Crypt_valid_pubEK)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   313
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   314
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   315
lemma Crypt_valid_pubSK:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   316
     "[| Crypt (priSK RCA) \<lbrace>Agent C, Key SKi, onlySig\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   317
           \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   318
         evs \<in> set_cr |] ==> SKi = pubSK C"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   319
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   320
apply (erule set_cr.induct, auto)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   321
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   322
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   323
lemma certificate_valid_pubSK:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   324
    "[| cert C SKi onlySig (priSK RCA) \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   325
        evs \<in> set_cr |] ==> SKi = pubSK C"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   326
apply (unfold cert_def signCert_def)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   327
apply (blast dest!: Crypt_valid_pubSK)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   328
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   329
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   330
lemma Gets_certificate_valid:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   331
     "[| Gets A \<lbrace> X, cert C EKi onlyEnc (priSK RCA),
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   332
                      cert C SKi onlySig (priSK RCA)\<rbrace> \<in> set evs;
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   333
         evs \<in> set_cr |]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   334
      ==> EKi = pubEK C & SKi = pubSK C"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   335
by (blast dest: certificate_valid_pubEK certificate_valid_pubSK)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   336
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   337
text\<open>Nobody can have used non-existent keys!\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   338
lemma new_keys_not_used:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   339
     "[|K \<in> symKeys; Key K \<notin> used evs; evs \<in> set_cr|]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   340
      ==> K \<notin> keysFor (parts (knows Spy evs))"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   341
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   342
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   343
apply (erule set_cr.induct)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   344
apply (frule_tac [8] Gets_certificate_valid)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   345
apply (frule_tac [6] Gets_certificate_valid, simp_all)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   346
apply (force dest!: usedI keysFor_parts_insert) \<comment>\<open>Fake\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   347
apply (blast,auto)  \<comment>\<open>Others\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   348
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   349
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   350
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   351
subsection\<open>New versions: as above, but generalized to have the KK argument\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   352
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   353
lemma gen_new_keys_not_used:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   354
     "[|Key K \<notin> used evs; K \<in> symKeys; evs \<in> set_cr |]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   355
      ==> Key K \<notin> used evs --> K \<in> symKeys -->
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   356
          K \<notin> keysFor (parts (Key`KK Un knows Spy evs))"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   357
by (auto simp add: new_keys_not_used)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   358
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   359
lemma gen_new_keys_not_analzd:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   360
     "[|Key K \<notin> used evs; K \<in> symKeys; evs \<in> set_cr |]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   361
      ==> K \<notin> keysFor (analz (Key`KK Un knows Spy evs))"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   362
by (blast intro: keysFor_mono [THEN [2] rev_subsetD]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   363
          dest: gen_new_keys_not_used)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   364
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   365
lemma analz_Key_image_insert_eq:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   366
     "[|K \<in> symKeys; Key K \<notin> used evs; evs \<in> set_cr |]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   367
      ==> analz (Key ` (insert K KK) \<union> knows Spy evs) =
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   368
          insert (Key K) (analz (Key ` KK \<union> knows Spy evs))"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   369
by (simp add: gen_new_keys_not_analzd)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   370
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   371
lemma Crypt_parts_imp_used:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   372
     "[|Crypt K X \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   373
        K \<in> symKeys; evs \<in> set_cr |] ==> Key K \<in> used evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   374
apply (rule ccontr)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   375
apply (force dest: new_keys_not_used Crypt_imp_invKey_keysFor)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   376
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   377
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   378
lemma Crypt_analz_imp_used:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   379
     "[|Crypt K X \<in> analz (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   380
        K \<in> symKeys; evs \<in> set_cr |] ==> Key K \<in> used evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   381
by (blast intro: Crypt_parts_imp_used)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   382
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   383
14218
db95d1c2f51b removal of junk and improvement of the document
paulson
parents: 14206
diff changeset
   384
(*<*) 
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   385
subsection\<open>Messages signed by CA\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   386
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   387
text\<open>Message \<open>SET_CR2\<close>: C can check CA's signature if he has received
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   388
     CA's certificate.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   389
lemma CA_Says_2_lemma:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   390
     "[| Crypt (priSK (CA i)) (Hash\<lbrace>Agent C, Nonce NC1\<rbrace>)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   391
           \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   392
         evs \<in> set_cr; (CA i) \<notin> bad |]
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   393
     ==> \<exists>Y. Says (CA i) C \<lbrace>sign (priSK (CA i)) \<lbrace>Agent C, Nonce NC1\<rbrace>, Y\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   394
                 \<in> set evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   395
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   396
apply (erule set_cr.induct, auto)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   397
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   398
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   399
text\<open>Ever used?\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   400
lemma CA_Says_2:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   401
     "[| Crypt (invKey SK) (Hash\<lbrace>Agent C, Nonce NC1\<rbrace>)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   402
           \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   403
         cert (CA i) SK onlySig (priSK RCA) \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   404
         evs \<in> set_cr; (CA i) \<notin> bad |]
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   405
      ==> \<exists>Y. Says (CA i) C \<lbrace>sign (priSK (CA i)) \<lbrace>Agent C, Nonce NC1\<rbrace>, Y\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   406
                  \<in> set evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   407
by (blast dest!: certificate_valid_pubSK intro!: CA_Says_2_lemma)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   408
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   409
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   410
text\<open>Message \<open>SET_CR4\<close>: C can check CA's signature if he has received
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   411
      CA's certificate.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   412
lemma CA_Says_4_lemma:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   413
     "[| Crypt (priSK (CA i)) (Hash\<lbrace>Agent C, Nonce NC2, Nonce NCA\<rbrace>)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   414
           \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   415
         evs \<in> set_cr; (CA i) \<notin> bad |]
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   416
      ==> \<exists>Y. Says (CA i) C \<lbrace>sign (priSK (CA i))
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   417
                     \<lbrace>Agent C, Nonce NC2, Nonce NCA\<rbrace>, Y\<rbrace> \<in> set evs"
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   418
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   419
apply (erule set_cr.induct, auto)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   420
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   421
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   422
text\<open>NEVER USED\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   423
lemma CA_Says_4:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   424
     "[| Crypt (invKey SK) (Hash\<lbrace>Agent C, Nonce NC2, Nonce NCA\<rbrace>)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   425
           \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   426
         cert (CA i) SK onlySig (priSK RCA) \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   427
         evs \<in> set_cr; (CA i) \<notin> bad |]
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   428
      ==> \<exists>Y. Says (CA i) C \<lbrace>sign (priSK (CA i))
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   429
                   \<lbrace>Agent C, Nonce NC2, Nonce NCA\<rbrace>, Y\<rbrace> \<in> set evs"
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   430
by (blast dest!: certificate_valid_pubSK intro!: CA_Says_4_lemma)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   431
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   432
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   433
text\<open>Message \<open>SET_CR6\<close>: C can check CA's signature if he has
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   434
      received CA's certificate.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   435
lemma CA_Says_6_lemma:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   436
     "[| Crypt (priSK (CA i)) 
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   437
               (Hash\<lbrace>Agent C, Nonce NC3, Agent (CA i), Nonce NonceCCA\<rbrace>)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   438
           \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   439
         evs \<in> set_cr; (CA i) \<notin> bad |]
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   440
      ==> \<exists>Y K. Says (CA i) C (Crypt K \<lbrace>sign (priSK (CA i))
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   441
      \<lbrace>Agent C, Nonce NC3, Agent (CA i), Nonce NonceCCA\<rbrace>, Y\<rbrace>) \<in> set evs"
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   442
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   443
apply (erule set_cr.induct, auto)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   444
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   445
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   446
text\<open>NEVER USED\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   447
lemma CA_Says_6:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   448
     "[| Crypt (invKey SK) (Hash\<lbrace>Agent C, Nonce NC3, Agent (CA i), Nonce NonceCCA\<rbrace>)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   449
           \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   450
         cert (CA i) SK onlySig (priSK RCA) \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   451
         evs \<in> set_cr; (CA i) \<notin> bad |]
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   452
      ==> \<exists>Y K. Says (CA i) C (Crypt K \<lbrace>sign (priSK (CA i))
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   453
                    \<lbrace>Agent C, Nonce NC3, Agent (CA i), Nonce NonceCCA\<rbrace>, Y\<rbrace>) \<in> set evs"
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   454
by (blast dest!: certificate_valid_pubSK intro!: CA_Says_6_lemma)
14218
db95d1c2f51b removal of junk and improvement of the document
paulson
parents: 14206
diff changeset
   455
(*>*)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   456
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   457
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   458
subsection\<open>Useful lemmas\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   459
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   460
text\<open>Rewriting rule for private encryption keys.  Analogous rewriting rules
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   461
for other keys aren't needed.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   462
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   463
lemma parts_image_priEK:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   464
     "[|Key (priEK C) \<in> parts (Key`KK Un (knows Spy evs));
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   465
        evs \<in> set_cr|] ==> priEK C \<in> KK | C \<in> bad"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   466
by auto
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   467
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   468
text\<open>trivial proof because (priEK C) never appears even in (parts evs)\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   469
lemma analz_image_priEK:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   470
     "evs \<in> set_cr ==>
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   471
          (Key (priEK C) \<in> analz (Key`KK Un (knows Spy evs))) =
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   472
          (priEK C \<in> KK | C \<in> bad)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   473
by (blast dest!: parts_image_priEK intro: analz_mono [THEN [2] rev_subsetD])
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   474
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   475
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   476
subsection\<open>Secrecy of Session Keys\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   477
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   478
subsubsection\<open>Lemmas about the predicate KeyCryptKey\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   479
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   480
text\<open>A fresh DK cannot be associated with any other
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   481
  (with respect to a given trace).\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   482
lemma DK_fresh_not_KeyCryptKey:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   483
     "[| Key DK \<notin> used evs; evs \<in> set_cr |] ==> ~ KeyCryptKey DK K evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   484
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   485
apply (erule set_cr.induct)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   486
apply (simp_all (no_asm_simp))
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   487
apply (blast dest: Crypt_analz_imp_used)+
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   488
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   489
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   490
text\<open>A fresh K cannot be associated with any other.  The assumption that
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   491
  DK isn't a private encryption key may be an artifact of the particular
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   492
  definition of KeyCryptKey.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   493
lemma K_fresh_not_KeyCryptKey:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   494
     "[|\<forall>C. DK \<noteq> priEK C; Key K \<notin> used evs|] ==> ~ KeyCryptKey DK K evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   495
apply (induct evs)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   496
apply (auto simp add: parts_insert2 split add: event.split)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   497
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   498
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   499
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   500
text\<open>This holds because if (priEK (CA i)) appears in any traffic then it must
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   501
  be known to the Spy, by @{term Spy_see_private_Key}\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   502
lemma cardSK_neq_priEK:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   503
     "[|Key cardSK \<notin> analz (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   504
        Key cardSK : parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   505
        evs \<in> set_cr|] ==> cardSK \<noteq> priEK C"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   506
by blast
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   507
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   508
lemma not_KeyCryptKey_cardSK [rule_format (no_asm)]:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   509
     "[|cardSK \<notin> symKeys;  \<forall>C. cardSK \<noteq> priEK C;  evs \<in> set_cr|] ==>
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   510
      Key cardSK \<notin> analz (knows Spy evs) --> ~ KeyCryptKey cardSK K evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   511
by (erule set_cr.induct, analz_mono_contra, auto)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   512
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   513
text\<open>Lemma for message 5: pubSK C is never used to encrypt Keys.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   514
lemma pubSK_not_KeyCryptKey [simp]: "~ KeyCryptKey (pubSK C) K evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   515
apply (induct_tac "evs")
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   516
apply (auto simp add: parts_insert2 split add: event.split)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   517
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   518
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   519
text\<open>Lemma for message 6: either cardSK is compromised (when we don't care)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   520
  or else cardSK hasn't been used to encrypt K.  Previously we treated
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   521
  message 5 in the same way, but the current model assumes that rule
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   522
  \<open>SET_CR5\<close> is executed only by honest agents.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   523
lemma msg6_KeyCryptKey_disj:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   524
     "[|Gets B \<lbrace>Crypt KC3 \<lbrace>Agent C, Nonce N, Key KC2, Key cardSK, X\<rbrace>, Y\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   525
          \<in> set evs;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   526
        cardSK \<notin> symKeys;  evs \<in> set_cr|]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   527
      ==> Key cardSK \<in> analz (knows Spy evs) |
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   528
          (\<forall>K. ~ KeyCryptKey cardSK K evs)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   529
by (blast dest: not_KeyCryptKey_cardSK intro: cardSK_neq_priEK)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   530
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   531
text\<open>As usual: we express the property as a logical equivalence\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   532
lemma Key_analz_image_Key_lemma:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   533
     "P --> (Key K \<in> analz (Key`KK Un H)) --> (K \<in> KK | Key K \<in> analz H)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   534
      ==>
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   535
      P --> (Key K \<in> analz (Key`KK Un H)) = (K \<in> KK | Key K \<in> analz H)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   536
by (blast intro: analz_mono [THEN [2] rev_subsetD])
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   537
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   538
method_setup valid_certificate_tac = \<open>
51798
ad3a241def73 uniform Proof.context for hyp_subst_tac;
wenzelm
parents: 42814
diff changeset
   539
  Args.goal_spec >> (fn quant => fn ctxt => SIMPLE_METHOD'' quant
30549
d2d7874648bd simplified method setup;
wenzelm
parents: 24123
diff changeset
   540
    (fn i =>
59499
14095f771781 misc tuning;
wenzelm
parents: 58963
diff changeset
   541
      EVERY [forward_tac ctxt @{thms Gets_certificate_valid} i,
58963
26bf09b95dda proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents: 58889
diff changeset
   542
             assume_tac ctxt i,
60754
02924903a6fd prefer tactics with explicit context;
wenzelm
parents: 59807
diff changeset
   543
             eresolve_tac ctxt [conjE] i, REPEAT (hyp_subst_tac ctxt i)]))
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   544
\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   545
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   546
text\<open>The \<open>(no_asm)\<close> attribute is essential, since it retains
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   547
  the quantifier and allows the simprule's condition to itself be simplified.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   548
lemma symKey_compromise [rule_format (no_asm)]:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   549
     "evs \<in> set_cr ==>
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   550
      (\<forall>SK KK. SK \<in> symKeys \<longrightarrow> (\<forall>K \<in> KK. ~ KeyCryptKey K SK evs)   -->
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   551
               (Key SK \<in> analz (Key`KK Un (knows Spy evs))) =
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   552
               (SK \<in> KK | Key SK \<in> analz (knows Spy evs)))"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   553
apply (erule set_cr.induct)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   554
apply (rule_tac [!] allI) +
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   555
apply (rule_tac [!] impI [THEN Key_analz_image_Key_lemma, THEN impI])+
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   556
apply (valid_certificate_tac [8]) \<comment>\<open>for message 5\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   557
apply (valid_certificate_tac [6]) \<comment>\<open>for message 5\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   558
apply (erule_tac [9] msg6_KeyCryptKey_disj [THEN disjE])
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   559
apply (simp_all
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   560
         del: image_insert image_Un imp_disjL
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   561
         add: analz_image_keys_simps analz_knows_absorb
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   562
              analz_Key_image_insert_eq notin_image_iff
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   563
              K_fresh_not_KeyCryptKey
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   564
              DK_fresh_not_KeyCryptKey ball_conj_distrib
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   565
              analz_image_priEK disj_simps)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   566
  \<comment>\<open>9 seconds on a 1.6GHz machine\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   567
apply spy_analz
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   568
apply blast  \<comment>\<open>3\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   569
apply blast  \<comment>\<open>5\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   570
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   571
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   572
text\<open>The remaining quantifiers seem to be essential.
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   573
  NO NEED to assume the cardholder's OK: bad cardholders don't do anything
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   574
  wrong!!\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   575
lemma symKey_secrecy [rule_format]:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   576
     "[|CA i \<notin> bad;  K \<in> symKeys;  evs \<in> set_cr|]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   577
      ==> \<forall>X c. Says (Cardholder c) (CA i) X \<in> set evs -->
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   578
                Key K \<in> parts{X} -->
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   579
                Cardholder c \<notin> bad -->
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   580
                Key K \<notin> analz (knows Spy evs)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   581
apply (erule set_cr.induct)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   582
apply (frule_tac [8] Gets_certificate_valid) \<comment>\<open>for message 5\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   583
apply (frule_tac [6] Gets_certificate_valid) \<comment>\<open>for message 3\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   584
apply (erule_tac [11] msg6_KeyCryptKey_disj [THEN disjE])
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   585
apply (simp_all del: image_insert image_Un imp_disjL
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   586
         add: symKey_compromise fresh_notin_analz_knows_Spy
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   587
              analz_image_keys_simps analz_knows_absorb
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   588
              analz_Key_image_insert_eq notin_image_iff
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   589
              K_fresh_not_KeyCryptKey
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   590
              DK_fresh_not_KeyCryptKey
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   591
              analz_image_priEK)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   592
  \<comment>\<open>2.5 seconds on a 1.6GHz machine\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   593
apply spy_analz  \<comment>\<open>Fake\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   594
apply (auto intro: analz_into_parts [THEN usedI] in_parts_Says_imp_used)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   595
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   596
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   597
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   598
subsection\<open>Primary Goals of Cardholder Registration\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   599
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   600
text\<open>The cardholder's certificate really was created by the CA, provided the
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   601
    CA is uncompromised\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   602
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   603
text\<open>Lemma concerning the actual signed message digest\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   604
lemma cert_valid_lemma:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   605
     "[|Crypt (priSK (CA i)) \<lbrace>Hash \<lbrace>Nonce N, Pan(pan C)\<rbrace>, Key cardSK, N1\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   606
          \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   607
        CA i \<notin> bad; evs \<in> set_cr|]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   608
  ==> \<exists>KC2 X Y. Says (CA i) C
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   609
                     (Crypt KC2 
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   610
                       \<lbrace>X, certC (pan C) cardSK N onlySig (priSK (CA i)), Y\<rbrace>)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   611
                  \<in> set evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   612
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   613
apply (erule set_cr.induct)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   614
apply (simp_all (no_asm_simp))
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   615
apply auto
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   616
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   617
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   618
text\<open>Pre-packaged version for cardholder.  We don't try to confirm the values
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   619
  of KC2, X and Y, since they are not important.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   620
lemma certificate_valid_cardSK:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   621
    "[|Gets C (Crypt KC2 \<lbrace>X, certC (pan C) cardSK N onlySig (invKey SKi),
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   622
                              cert (CA i) SKi onlySig (priSK RCA)\<rbrace>) \<in> set evs;
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   623
        CA i \<notin> bad; evs \<in> set_cr|]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   624
  ==> \<exists>KC2 X Y. Says (CA i) C
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   625
                     (Crypt KC2 
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   626
                       \<lbrace>X, certC (pan C) cardSK N onlySig (priSK (CA i)), Y\<rbrace>)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   627
                   \<in> set evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   628
by (force dest!: Gets_imp_knows_Spy [THEN parts.Inj, THEN parts.Body]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   629
                    certificate_valid_pubSK cert_valid_lemma)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   630
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   631
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   632
lemma Hash_imp_parts [rule_format]:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   633
     "evs \<in> set_cr
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   634
      ==> Hash\<lbrace>X, Nonce N\<rbrace> \<in> parts (knows Spy evs) -->
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   635
          Nonce N \<in> parts (knows Spy evs)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   636
apply (erule set_cr.induct, force)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   637
apply (simp_all (no_asm_simp))
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   638
apply (blast intro: parts_mono [THEN [2] rev_subsetD])
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   639
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   640
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   641
lemma Hash_imp_parts2 [rule_format]:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   642
     "evs \<in> set_cr
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   643
      ==> Hash\<lbrace>X, Nonce M, Y, Nonce N\<rbrace> \<in> parts (knows Spy evs) -->
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   644
          Nonce M \<in> parts (knows Spy evs) & Nonce N \<in> parts (knows Spy evs)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   645
apply (erule set_cr.induct, force)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   646
apply (simp_all (no_asm_simp))
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   647
apply (blast intro: parts_mono [THEN [2] rev_subsetD])
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   648
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   649
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   650
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   651
subsection\<open>Secrecy of Nonces\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   652
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   653
subsubsection\<open>Lemmas about the predicate KeyCryptNonce\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   654
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   655
text\<open>A fresh DK cannot be associated with any other
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   656
  (with respect to a given trace).\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   657
lemma DK_fresh_not_KeyCryptNonce:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   658
     "[| DK \<in> symKeys; Key DK \<notin> used evs; evs \<in> set_cr |]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   659
      ==> ~ KeyCryptNonce DK K evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   660
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   661
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   662
apply (erule set_cr.induct)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   663
apply (simp_all (no_asm_simp))
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   664
apply blast
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   665
apply blast
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   666
apply (auto simp add: DK_fresh_not_KeyCryptKey)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   667
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   668
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   669
text\<open>A fresh N cannot be associated with any other
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   670
      (with respect to a given trace).\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   671
lemma N_fresh_not_KeyCryptNonce:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   672
     "\<forall>C. DK \<noteq> priEK C ==> Nonce N \<notin> used evs --> ~ KeyCryptNonce DK N evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   673
apply (induct_tac "evs")
55417
01fbfb60c33e adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
blanchet
parents: 51798
diff changeset
   674
apply (rename_tac [2] a evs')
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   675
apply (case_tac [2] "a")
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   676
apply (auto simp add: parts_insert2)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   677
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   678
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   679
lemma not_KeyCryptNonce_cardSK [rule_format (no_asm)]:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   680
     "[|cardSK \<notin> symKeys;  \<forall>C. cardSK \<noteq> priEK C;  evs \<in> set_cr|] ==>
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   681
      Key cardSK \<notin> analz (knows Spy evs) --> ~ KeyCryptNonce cardSK N evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   682
apply (erule set_cr.induct, analz_mono_contra, simp_all)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   683
apply (blast dest: not_KeyCryptKey_cardSK)  \<comment>\<open>6\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   684
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   685
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   686
subsubsection\<open>Lemmas for message 5 and 6:
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   687
  either cardSK is compromised (when we don't care)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   688
  or else cardSK hasn't been used to encrypt K.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   689
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   690
text\<open>Lemma for message 5: pubSK C is never used to encrypt Nonces.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   691
lemma pubSK_not_KeyCryptNonce [simp]: "~ KeyCryptNonce (pubSK C) N evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   692
apply (induct_tac "evs")
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   693
apply (auto simp add: parts_insert2 split add: event.split)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   694
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   695
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   696
text\<open>Lemma for message 6: either cardSK is compromised (when we don't care)
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   697
  or else cardSK hasn't been used to encrypt K.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   698
lemma msg6_KeyCryptNonce_disj:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   699
     "[|Gets B \<lbrace>Crypt KC3 \<lbrace>Agent C, Nonce N, Key KC2, Key cardSK, X\<rbrace>, Y\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   700
          \<in> set evs;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   701
        cardSK \<notin> symKeys;  evs \<in> set_cr|]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   702
      ==> Key cardSK \<in> analz (knows Spy evs) |
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   703
          ((\<forall>K. ~ KeyCryptKey cardSK K evs) &
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   704
           (\<forall>N. ~ KeyCryptNonce cardSK N evs))"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   705
by (blast dest: not_KeyCryptKey_cardSK not_KeyCryptNonce_cardSK
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   706
          intro: cardSK_neq_priEK)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   707
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   708
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   709
text\<open>As usual: we express the property as a logical equivalence\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   710
lemma Nonce_analz_image_Key_lemma:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   711
     "P --> (Nonce N \<in> analz (Key`KK Un H)) --> (Nonce N \<in> analz H)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   712
      ==> P --> (Nonce N \<in> analz (Key`KK Un H)) = (Nonce N \<in> analz H)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   713
by (blast intro: analz_mono [THEN [2] rev_subsetD])
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   714
32404
da3ca3c6ec81 sledgehammer used to streamline protocol proofs
paulson
parents: 30607
diff changeset
   715
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   716
text\<open>The \<open>(no_asm)\<close> attribute is essential, since it retains
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   717
  the quantifier and allows the simprule's condition to itself be simplified.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   718
lemma Nonce_compromise [rule_format (no_asm)]:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   719
     "evs \<in> set_cr ==>
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   720
      (\<forall>N KK. (\<forall>K \<in> KK. ~ KeyCryptNonce K N evs)   -->
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   721
               (Nonce N \<in> analz (Key`KK Un (knows Spy evs))) =
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   722
               (Nonce N \<in> analz (knows Spy evs)))"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   723
apply (erule set_cr.induct)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   724
apply (rule_tac [!] allI)+
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   725
apply (rule_tac [!] impI [THEN Nonce_analz_image_Key_lemma])+
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   726
apply (frule_tac [8] Gets_certificate_valid) \<comment>\<open>for message 5\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   727
apply (frule_tac [6] Gets_certificate_valid) \<comment>\<open>for message 3\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   728
apply (frule_tac [11] msg6_KeyCryptNonce_disj)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   729
apply (erule_tac [13] disjE)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   730
apply (simp_all del: image_insert image_Un
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   731
         add: symKey_compromise
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   732
              analz_image_keys_simps analz_knows_absorb
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   733
              analz_Key_image_insert_eq notin_image_iff
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   734
              N_fresh_not_KeyCryptNonce
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   735
              DK_fresh_not_KeyCryptNonce K_fresh_not_KeyCryptKey
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   736
              ball_conj_distrib analz_image_priEK)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   737
  \<comment>\<open>14 seconds on a 1.6GHz machine\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   738
apply spy_analz  \<comment>\<open>Fake\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   739
apply blast  \<comment>\<open>3\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   740
apply blast  \<comment>\<open>5\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   741
txt\<open>Message 6\<close>
32404
da3ca3c6ec81 sledgehammer used to streamline protocol proofs
paulson
parents: 30607
diff changeset
   742
apply (metis symKey_compromise)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   743
  \<comment>\<open>cardSK compromised\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   744
txt\<open>Simplify again--necessary because the previous simplification introduces
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   745
  some logical connectives\<close> 
32404
da3ca3c6ec81 sledgehammer used to streamline protocol proofs
paulson
parents: 30607
diff changeset
   746
apply (force simp del: image_insert image_Un imp_disjL
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   747
          simp add: analz_image_keys_simps symKey_compromise)
14218
db95d1c2f51b removal of junk and improvement of the document
paulson
parents: 14206
diff changeset
   748
done
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   749
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   750
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   751
subsection\<open>Secrecy of CardSecret: the Cardholder's secret\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   752
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   753
lemma NC2_not_CardSecret:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   754
     "[|Crypt EKj \<lbrace>Key K, Pan p, Hash \<lbrace>Agent D, Nonce N\<rbrace>\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   755
          \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   756
        Key K \<notin> analz (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   757
        Nonce N \<notin> analz (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   758
       evs \<in> set_cr|]
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   759
      ==> Crypt EKi \<lbrace>Key K', Pan p', Nonce N\<rbrace> \<notin> parts (knows Spy evs)"
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   760
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   761
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   762
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   763
apply (erule set_cr.induct, analz_mono_contra, simp_all)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   764
apply (blast dest: Hash_imp_parts)+
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   765
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   766
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   767
lemma KC2_secure_lemma [rule_format]:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   768
     "[|U = Crypt KC3 \<lbrace>Agent C, Nonce N, Key KC2, X\<rbrace>;
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   769
        U \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   770
        evs \<in> set_cr|]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   771
  ==> Nonce N \<notin> analz (knows Spy evs) -->
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   772
      (\<exists>k i W. Says (Cardholder k) (CA i) \<lbrace>U,W\<rbrace> \<in> set evs & 
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   773
               Cardholder k \<notin> bad & CA i \<notin> bad)"
59807
22bc39064290 prefer local fixes;
wenzelm
parents: 59499
diff changeset
   774
apply (erule_tac P = "U \<in> H" for H in rev_mp)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   775
apply (erule set_cr.induct)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   776
apply (valid_certificate_tac [8])  \<comment>\<open>for message 5\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   777
apply (simp_all del: image_insert image_Un imp_disjL
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   778
         add: analz_image_keys_simps analz_knows_absorb
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   779
              analz_knows_absorb2 notin_image_iff)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   780
  \<comment>\<open>4 seconds on a 1.6GHz machine\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   781
apply (simp_all (no_asm_simp)) \<comment>\<open>leaves 4 subgoals\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   782
apply (blast intro!: analz_insertI)+
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   783
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   784
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   785
lemma KC2_secrecy:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   786
     "[|Gets B \<lbrace>Crypt K \<lbrace>Agent C, Nonce N, Key KC2, X\<rbrace>, Y\<rbrace> \<in> set evs;
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   787
        Nonce N \<notin> analz (knows Spy evs);  KC2 \<in> symKeys;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   788
        evs \<in> set_cr|]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   789
       ==> Key KC2 \<notin> analz (knows Spy evs)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   790
by (force dest!: refl [THEN KC2_secure_lemma] symKey_secrecy)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   791
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   792
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   793
text\<open>Inductive version\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   794
lemma CardSecret_secrecy_lemma [rule_format]:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   795
     "[|CA i \<notin> bad;  evs \<in> set_cr|]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   796
      ==> Key K \<notin> analz (knows Spy evs) -->
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   797
          Crypt (pubEK (CA i)) \<lbrace>Key K, Pan p, Nonce CardSecret\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   798
             \<in> parts (knows Spy evs) -->
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   799
          Nonce CardSecret \<notin> analz (knows Spy evs)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   800
apply (erule set_cr.induct, analz_mono_contra)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   801
apply (valid_certificate_tac [8]) \<comment>\<open>for message 5\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   802
apply (valid_certificate_tac [6]) \<comment>\<open>for message 5\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   803
apply (frule_tac [9] msg6_KeyCryptNonce_disj [THEN disjE])
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   804
apply (simp_all
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   805
         del: image_insert image_Un imp_disjL
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   806
         add: analz_image_keys_simps analz_knows_absorb
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   807
              analz_Key_image_insert_eq notin_image_iff
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   808
              EXHcrypt_def Crypt_notin_image_Key
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   809
              N_fresh_not_KeyCryptNonce DK_fresh_not_KeyCryptNonce
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   810
              ball_conj_distrib Nonce_compromise symKey_compromise
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   811
              analz_image_priEK)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   812
  \<comment>\<open>2.5 seconds on a 1.6GHz machine\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   813
apply spy_analz  \<comment>\<open>Fake\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   814
apply (simp_all (no_asm_simp))
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   815
apply blast  \<comment>\<open>1\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   816
apply (blast dest!: Gets_imp_knows_Spy [THEN analz.Inj])  \<comment>\<open>2\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   817
apply blast  \<comment>\<open>3\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   818
apply (blast dest: NC2_not_CardSecret Gets_imp_knows_Spy [THEN analz.Inj] analz_symKeys_Decrypt)  \<comment>\<open>4\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   819
apply blast  \<comment>\<open>5\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   820
apply (blast dest: KC2_secrecy)+  \<comment>\<open>Message 6: two cases\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   821
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   822
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   823
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   824
text\<open>Packaged version for cardholder\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   825
lemma CardSecret_secrecy:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   826
     "[|Cardholder k \<notin> bad;  CA i \<notin> bad;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   827
        Says (Cardholder k) (CA i)
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   828
           \<lbrace>X, Crypt EKi \<lbrace>Key KC3, Pan p, Nonce CardSecret\<rbrace>\<rbrace> \<in> set evs;
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   829
        Gets A \<lbrace>Z, cert (CA i) EKi onlyEnc (priSK RCA),
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   830
                    cert (CA i) SKi onlySig (priSK RCA)\<rbrace> \<in> set evs;
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   831
        KC3 \<in> symKeys;  evs \<in> set_cr|]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   832
      ==> Nonce CardSecret \<notin> analz (knows Spy evs)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   833
apply (frule Gets_certificate_valid, assumption)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   834
apply (subgoal_tac "Key KC3 \<notin> analz (knows Spy evs) ")
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   835
apply (blast dest: CardSecret_secrecy_lemma)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   836
apply (rule symKey_secrecy)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   837
apply (auto simp add: parts_insert2)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   838
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   839
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   840
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   841
subsection\<open>Secrecy of NonceCCA [the CA's secret]\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   842
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   843
lemma NC2_not_NonceCCA:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   844
     "[|Hash \<lbrace>Agent C', Nonce N', Agent C, Nonce N\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   845
          \<in> parts (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   846
        Nonce N \<notin> analz (knows Spy evs);
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   847
       evs \<in> set_cr|]
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   848
      ==> Crypt KC1 \<lbrace>\<lbrace>Agent B, Nonce N\<rbrace>, Hash p\<rbrace> \<notin> parts (knows Spy evs)"
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   849
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   850
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   851
apply (erule set_cr.induct, analz_mono_contra, simp_all)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   852
apply (blast dest: Hash_imp_parts2)+
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   853
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   854
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   855
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   856
text\<open>Inductive version\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   857
lemma NonceCCA_secrecy_lemma [rule_format]:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   858
     "[|CA i \<notin> bad;  evs \<in> set_cr|]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   859
      ==> Key K \<notin> analz (knows Spy evs) -->
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   860
          Crypt K
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   861
            \<lbrace>sign (priSK (CA i))
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   862
                   \<lbrace>Agent C, Nonce N, Agent(CA i), Nonce NonceCCA\<rbrace>,
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   863
              X, Y\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   864
             \<in> parts (knows Spy evs) -->
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   865
          Nonce NonceCCA \<notin> analz (knows Spy evs)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   866
apply (erule set_cr.induct, analz_mono_contra)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   867
apply (valid_certificate_tac [8]) \<comment>\<open>for message 5\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   868
apply (valid_certificate_tac [6]) \<comment>\<open>for message 5\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   869
apply (frule_tac [9] msg6_KeyCryptNonce_disj [THEN disjE])
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   870
apply (simp_all
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   871
         del: image_insert image_Un imp_disjL
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   872
         add: analz_image_keys_simps analz_knows_absorb sign_def
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   873
              analz_Key_image_insert_eq notin_image_iff
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   874
              EXHcrypt_def Crypt_notin_image_Key
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   875
              N_fresh_not_KeyCryptNonce DK_fresh_not_KeyCryptNonce
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   876
              ball_conj_distrib Nonce_compromise symKey_compromise
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   877
              analz_image_priEK)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   878
  \<comment>\<open>3 seconds on a 1.6GHz machine\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   879
apply spy_analz  \<comment>\<open>Fake\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   880
apply blast  \<comment>\<open>1\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   881
apply (blast dest!: Gets_imp_knows_Spy [THEN analz.Inj])  \<comment>\<open>2\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   882
apply blast  \<comment>\<open>3\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   883
apply (blast dest: NC2_not_NonceCCA)  \<comment>\<open>4\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   884
apply blast  \<comment>\<open>5\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   885
apply (blast dest: KC2_secrecy)+  \<comment>\<open>Message 6: two cases\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   886
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   887
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   888
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   889
text\<open>Packaged version for cardholder\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   890
lemma NonceCCA_secrecy:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   891
     "[|Cardholder k \<notin> bad;  CA i \<notin> bad;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   892
        Gets (Cardholder k)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   893
           (Crypt KC2
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   894
            \<lbrace>sign (priSK (CA i)) \<lbrace>Agent C, Nonce N, Agent(CA i), Nonce NonceCCA\<rbrace>,
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   895
              X, Y\<rbrace>) \<in> set evs;
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   896
        Says (Cardholder k) (CA i)
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   897
           \<lbrace>Crypt KC3 \<lbrace>Agent C, Nonce NC3, Key KC2, X'\<rbrace>, Y'\<rbrace> \<in> set evs;
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   898
        Gets A \<lbrace>Z, cert (CA i) EKi onlyEnc (priSK RCA),
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   899
                    cert (CA i) SKi onlySig (priSK RCA)\<rbrace> \<in> set evs;
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   900
        KC2 \<in> symKeys;  evs \<in> set_cr|]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   901
      ==> Nonce NonceCCA \<notin> analz (knows Spy evs)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   902
apply (frule Gets_certificate_valid, assumption)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   903
apply (subgoal_tac "Key KC2 \<notin> analz (knows Spy evs) ")
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   904
apply (blast dest: NonceCCA_secrecy_lemma)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   905
apply (rule symKey_secrecy)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   906
apply (auto simp add: parts_insert2)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   907
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   908
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   909
text\<open>We don't bother to prove guarantees for the CA.  He doesn't care about
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   910
  the PANSecret: it isn't his credit card!\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   911
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   912
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   913
subsection\<open>Rewriting Rule for PANs\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   914
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   915
text\<open>Lemma for message 6: either cardSK isn't a CA's private encryption key,
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   916
  or if it is then (because it appears in traffic) that CA is bad,
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   917
  and so the Spy knows that key already.  Either way, we can simplify
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   918
  the expression @{term "analz (insert (Key cardSK) X)"}.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   919
lemma msg6_cardSK_disj:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   920
     "[|Gets A \<lbrace>Crypt K \<lbrace>c, n, k', Key cardSK, X\<rbrace>, Y\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   921
          \<in> set evs;  evs \<in> set_cr |]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   922
      ==> cardSK \<notin> range(invKey o pubEK o CA) | Key cardSK \<in> knows Spy evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   923
by auto
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   924
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   925
lemma analz_image_pan_lemma:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   926
     "(Pan P \<in> analz (Key`nE Un H)) --> (Pan P \<in> analz H)  ==>
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   927
      (Pan P \<in> analz (Key`nE Un H)) =   (Pan P \<in> analz H)"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   928
by (blast intro: analz_mono [THEN [2] rev_subsetD])
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   929
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   930
lemma analz_image_pan [rule_format]:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   931
     "evs \<in> set_cr ==>
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   932
       \<forall>KK. KK <= - invKey ` pubEK ` range CA -->
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   933
            (Pan P \<in> analz (Key`KK Un (knows Spy evs))) =
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   934
            (Pan P \<in> analz (knows Spy evs))"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   935
apply (erule set_cr.induct)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   936
apply (rule_tac [!] allI impI)+
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   937
apply (rule_tac [!] analz_image_pan_lemma)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   938
apply (valid_certificate_tac [8]) \<comment>\<open>for message 5\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   939
apply (valid_certificate_tac [6]) \<comment>\<open>for message 5\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   940
apply (erule_tac [9] msg6_cardSK_disj [THEN disjE])
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   941
apply (simp_all
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   942
         del: image_insert image_Un
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   943
         add: analz_image_keys_simps disjoint_image_iff
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   944
              notin_image_iff analz_image_priEK)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   945
  \<comment>\<open>6 seconds on a 1.6GHz machine\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   946
apply spy_analz
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   947
apply (simp add: insert_absorb)  \<comment>\<open>6\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   948
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   949
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   950
lemma analz_insert_pan:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   951
     "[| evs \<in> set_cr;  K \<notin> invKey ` pubEK ` range CA |] ==>
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   952
          (Pan P \<in> analz (insert (Key K) (knows Spy evs))) =
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   953
          (Pan P \<in> analz (knows Spy evs))"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   954
by (simp del: image_insert image_Un
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   955
         add: analz_image_keys_simps analz_image_pan)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   956
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   957
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   958
text\<open>Confidentiality of the PAN\@.  Maybe we could combine the statements of
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   959
  this theorem with @{term analz_image_pan}, requiring a single induction but
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   960
  a much more difficult proof.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   961
lemma pan_confidentiality:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   962
     "[| Pan (pan C) \<in> analz(knows Spy evs); C \<noteq>Spy; evs :set_cr|]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   963
    ==> \<exists>i X K HN.
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   964
        Says C (CA i) \<lbrace>X, Crypt (pubEK (CA i)) \<lbrace>Key K, Pan (pan C), HN\<rbrace> \<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   965
           \<in> set evs
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   966
      & (CA i) \<in> bad"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   967
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   968
apply (erule set_cr.induct)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   969
apply (valid_certificate_tac [8]) \<comment>\<open>for message 5\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   970
apply (valid_certificate_tac [6]) \<comment>\<open>for message 5\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   971
apply (erule_tac [9] msg6_cardSK_disj [THEN disjE])
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   972
apply (simp_all
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   973
         del: image_insert image_Un
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   974
         add: analz_image_keys_simps analz_insert_pan analz_image_pan
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   975
              notin_image_iff analz_image_priEK)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   976
  \<comment>\<open>3.5 seconds on a 1.6GHz machine\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   977
apply spy_analz  \<comment>\<open>fake\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   978
apply blast  \<comment>\<open>3\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   979
apply blast  \<comment>\<open>5\<close>
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   980
apply (simp (no_asm_simp) add: insert_absorb)  \<comment>\<open>6\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   981
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   982
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   983
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   984
subsection\<open>Unicity\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   985
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   986
lemma CR6_Says_imp_Notes:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   987
     "[|Says (CA i) C (Crypt KC2
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   988
          \<lbrace>sign (priSK (CA i)) \<lbrace>Agent C, Nonce NC3, Agent (CA i), Nonce Y\<rbrace>,
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   989
            certC (pan C) cardSK X onlySig (priSK (CA i)),
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
   990
            cert (CA i) (pubSK (CA i)) onlySig (priSK RCA)\<rbrace>)  \<in> set evs;
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   991
        evs \<in> set_cr |]
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   992
      ==> Notes (CA i) (Key cardSK) \<in> set evs"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   993
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   994
apply (erule set_cr.induct)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   995
apply (simp_all (no_asm_simp))
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   996
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
   997
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   998
text\<open>Unicity of cardSK: it uniquely identifies the other components.  
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
   999
      This holds because a CA accepts a cardSK at most once.\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1000
lemma cardholder_key_unicity:
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1001
     "[|Says (CA i) C (Crypt KC2
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
  1002
          \<lbrace>sign (priSK (CA i)) \<lbrace>Agent C, Nonce NC3, Agent (CA i), Nonce Y\<rbrace>,
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1003
            certC (pan C) cardSK X onlySig (priSK (CA i)),
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
  1004
            cert (CA i) (pubSK (CA i)) onlySig (priSK RCA)\<rbrace>)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1005
          \<in> set evs;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1006
        Says (CA i) C' (Crypt KC2'
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
  1007
          \<lbrace>sign (priSK (CA i)) \<lbrace>Agent C', Nonce NC3', Agent (CA i), Nonce Y'\<rbrace>,
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1008
            certC (pan C') cardSK X' onlySig (priSK (CA i)),
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
  1009
            cert (CA i) (pubSK (CA i)) onlySig (priSK RCA)\<rbrace>)
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1010
          \<in> set evs;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1011
        evs \<in> set_cr |] ==> C=C' & NC3=NC3' & X=X' & KC2=KC2' & Y=Y'"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1012
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1013
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1014
apply (erule set_cr.induct)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1015
apply (simp_all (no_asm_simp))
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1016
apply (blast dest!: CR6_Says_imp_Notes)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1017
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1018
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1019
14218
db95d1c2f51b removal of junk and improvement of the document
paulson
parents: 14206
diff changeset
  1020
(*<*)
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
  1021
text\<open>UNUSED unicity result\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1022
lemma unique_KC1:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
  1023
     "[|Says C B \<lbrace>Crypt KC1 X, Crypt EK \<lbrace>Key KC1, Y\<rbrace>\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1024
          \<in> set evs;
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
  1025
        Says C B' \<lbrace>Crypt KC1 X', Crypt EK' \<lbrace>Key KC1, Y'\<rbrace>\<rbrace>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1026
          \<in> set evs;
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1027
        C \<notin> bad;  evs \<in> set_cr|] ==> B'=B & Y'=Y"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1028
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1029
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1030
apply (erule set_cr.induct, auto)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1031
done
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1032
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
  1033
text\<open>UNUSED unicity result\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1034
lemma unique_KC2:
61984
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
  1035
     "[|Says C B \<lbrace>Crypt K \<lbrace>Agent C, nn, Key KC2, X\<rbrace>, Y\<rbrace> \<in> set evs;
cdea44c775fa more symbols;
wenzelm
parents: 60754
diff changeset
  1036
        Says C B' \<lbrace>Crypt K' \<lbrace>Agent C, nn', Key KC2, X'\<rbrace>, Y'\<rbrace> \<in> set evs;
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1037
        C \<notin> bad;  evs \<in> set_cr|] ==> B'=B & X'=X"
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1038
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1039
apply (erule rev_mp)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1040
apply (erule set_cr.induct, auto)
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1041
done
14218
db95d1c2f51b removal of junk and improvement of the document
paulson
parents: 14206
diff changeset
  1042
(*>*)
db95d1c2f51b removal of junk and improvement of the document
paulson
parents: 14206
diff changeset
  1043
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1044
63167
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
  1045
text\<open>Cannot show cardSK to be secret because it isn't assumed to be fresh
0909deb8059b isabelle update_cartouches -c -t;
wenzelm
parents: 61984
diff changeset
  1046
  it could be a previously compromised cardSK [e.g. involving a bad CA]\<close>
14199
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1047
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1048
d3b8d972a488 new session HOL-SET-Protocol
paulson
parents:
diff changeset
  1049
end