src/HOL/Auth/Public.thy
author urbanc
Wed, 08 Mar 2006 18:00:00 +0100
changeset 19218 47b05ebe106b
parent 18749 31c2af8b0c60
child 20048 a7964311f1fb
permissions -rw-r--r--
deleted some proofs "on comment"
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2318
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
     1
(*  Title:      HOL/Auth/Public
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
     2
    ID:         $Id$
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
     4
    Copyright   1996  University of Cambridge
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
     5
3512
9dcb4daa15e8 Moving common declarations and proofs from theories "Shared"
paulson
parents: 3478
diff changeset
     6
Theory of Public Keys (common to all public-key protocols)
2318
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
     7
3512
9dcb4daa15e8 Moving common declarations and proofs from theories "Shared"
paulson
parents: 3478
diff changeset
     8
Private and public keys; initial states of agents
2318
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
     9
*)
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
    10
16417
9bc16273c2d4 migrated theory headers to new format
haftmann
parents: 15616
diff changeset
    11
theory Public imports Event begin
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    12
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
    13
lemma invKey_K: "K \<in> symKeys ==> invKey K = K"
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
    14
by (simp add: symKeys_def)
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
    15
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    16
subsection{*Asymmetric Keys*}
2318
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
    17
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
    18
datatype keymode = Signature | Encryption
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
    19
2318
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
    20
consts
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
    21
  publicKey :: "[keymode,agent] => key"
2318
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
    22
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
    23
syntax
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    24
  pubEK :: "agent => key"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    25
  pubSK :: "agent => key"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    26
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    27
  privateKey :: "[bool,agent] => key"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    28
  priEK :: "agent => key"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    29
  priSK :: "agent => key"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    30
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    31
translations
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
    32
  "pubEK"  == "publicKey Encryption"
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
    33
  "pubSK"  == "publicKey Signature"
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    34
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    35
  (*BEWARE!! priEK, priSK DON'T WORK with inj, range, image, etc.*)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    36
  "privateKey b A" == "invKey (publicKey b A)"
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
    37
  "priEK A"  == "privateKey Encryption A"
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
    38
  "priSK A"  == "privateKey Signature A"
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    39
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    40
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    41
text{*These translations give backward compatibility.  They represent the
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    42
simple situation where the signature and encryption keys are the same.*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    43
syntax
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    44
  pubK :: "agent => key"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    45
  priK :: "agent => key"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    46
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    47
translations
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    48
  "pubK A" == "pubEK A"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    49
  "priK A" == "invKey (pubEK A)"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    50
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    51
14126
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13956
diff changeset
    52
text{*By freeness of agents, no two agents have the same key.  Since
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13956
diff changeset
    53
  @{term "True\<noteq>False"}, no agent has identical signing and encryption keys*}
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13956
diff changeset
    54
specification (publicKey)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    55
  injective_publicKey:
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    56
    "publicKey b A = publicKey c A' ==> b=c & A=A'"
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
    57
   apply (rule exI [of _ 
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
    58
       "%b A. 2 * agent_case 0 (\<lambda>n. n + 2) 1 A + keymode_case 0 1 b"])
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
    59
   apply (auto simp add: inj_on_def split: agent.split keymode.split)
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
    60
   apply presburger+
14126
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13956
diff changeset
    61
   done                       
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    62
14126
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13956
diff changeset
    63
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13956
diff changeset
    64
axioms
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    65
  (*No private key equals any public key (essential to ensure that private
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    66
    keys are private!) *)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    67
  privateKey_neq_publicKey [iff]: "privateKey b A \<noteq> publicKey c A'"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    68
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
    69
lemmas publicKey_neq_privateKey = privateKey_neq_publicKey [THEN not_sym]
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
    70
declare publicKey_neq_privateKey [iff]
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    71
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    72
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
    73
subsection{*Basic properties of @{term pubK} and @{term priK}*}
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    74
18570
ffce25f9aa7f a few more named lemmas
paulson
parents: 17990
diff changeset
    75
lemma publicKey_inject [iff]: "(publicKey b A = publicKey c A') = (b=c & A=A')"
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    76
by (blast dest!: injective_publicKey) 
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    77
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    78
lemma not_symKeys_pubK [iff]: "publicKey b A \<notin> symKeys"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
    79
by (simp add: symKeys_def)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    80
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    81
lemma not_symKeys_priK [iff]: "privateKey b A \<notin> symKeys"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
    82
by (simp add: symKeys_def)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    83
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    84
lemma symKey_neq_priEK: "K \<in> symKeys ==> K \<noteq> priEK A"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    85
by auto
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    86
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    87
lemma symKeys_neq_imp_neq: "(K \<in> symKeys) \<noteq> (K' \<in> symKeys) ==> K \<noteq> K'"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
    88
by blast
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    89
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    90
lemma symKeys_invKey_iff [iff]: "(invKey K \<in> symKeys) = (K \<in> symKeys)"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
    91
by (unfold symKeys_def, auto)
2318
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
    92
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    93
lemma analz_symKeys_Decrypt:
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    94
     "[| Crypt K X \<in> analz H;  K \<in> symKeys;  Key K \<in> analz H |]  
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    95
      ==> X \<in> analz H"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    96
by (auto simp add: symKeys_def)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    97
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    98
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
    99
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   100
subsection{*"Image" equations that hold for injective functions*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   101
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   102
lemma invKey_image_eq [simp]: "(invKey x \<in> invKey`A) = (x \<in> A)"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   103
by auto
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   104
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   105
(*holds because invKey is injective*)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   106
lemma publicKey_image_eq [simp]:
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   107
     "(publicKey b x \<in> publicKey c ` AA) = (b=c & x \<in> AA)"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   108
by auto
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   109
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   110
lemma privateKey_notin_image_publicKey [simp]: "privateKey b x \<notin> publicKey c ` AA"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   111
by auto
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   112
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   113
lemma privateKey_image_eq [simp]:
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   114
     "(privateKey b A \<in> invKey ` publicKey c ` AS) = (b=c & A\<in>AS)"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   115
by auto
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   116
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   117
lemma publicKey_notin_image_privateKey [simp]: "publicKey b A \<notin> invKey ` publicKey c ` AS"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   118
by auto
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   119
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   120
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   121
subsection{*Symmetric Keys*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   122
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   123
text{*For some protocols, it is convenient to equip agents with symmetric as
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   124
well as asymmetric keys.  The theory @{text Shared} assumes that all keys
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   125
are symmetric.*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   126
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   127
consts
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   128
  shrK    :: "agent => key"    --{*long-term shared keys*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   129
14126
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13956
diff changeset
   130
specification (shrK)
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13956
diff changeset
   131
  inj_shrK: "inj shrK"
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13956
diff changeset
   132
  --{*No two agents have the same long-term key*}
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13956
diff changeset
   133
   apply (rule exI [of _ "agent_case 0 (\<lambda>n. n + 2) 1"]) 
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13956
diff changeset
   134
   apply (simp add: inj_on_def split: agent.split) 
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13956
diff changeset
   135
   done
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13956
diff changeset
   136
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   137
axioms
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   138
  sym_shrK [iff]: "shrK X \<in> symKeys" --{*All shared keys are symmetric*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   139
18570
ffce25f9aa7f a few more named lemmas
paulson
parents: 17990
diff changeset
   140
text{*Injectiveness: Agents' long-term keys are distinct.*}
ffce25f9aa7f a few more named lemmas
paulson
parents: 17990
diff changeset
   141
lemmas shrK_injective = inj_shrK [THEN inj_eq]
ffce25f9aa7f a few more named lemmas
paulson
parents: 17990
diff changeset
   142
declare shrK_injective [iff]
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   143
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   144
lemma invKey_shrK [simp]: "invKey (shrK A) = shrK A"
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   145
by (simp add: invKey_K) 
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   146
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   147
lemma analz_shrK_Decrypt:
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   148
     "[| Crypt (shrK A) X \<in> analz H; Key(shrK A) \<in> analz H |] ==> X \<in> analz H"
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   149
by auto
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   150
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   151
lemma analz_Decrypt':
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   152
     "[| Crypt K X \<in> analz H; K \<in> symKeys; Key K \<in> analz H |] ==> X \<in> analz H"
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   153
by (auto simp add: invKey_K)
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   154
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   155
lemma priK_neq_shrK [iff]: "shrK A \<noteq> privateKey b C"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   156
by (simp add: symKeys_neq_imp_neq)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   157
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   158
lemmas shrK_neq_priK = priK_neq_shrK [THEN not_sym]
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   159
declare shrK_neq_priK [simp]
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   160
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   161
lemma pubK_neq_shrK [iff]: "shrK A \<noteq> publicKey b C"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   162
by (simp add: symKeys_neq_imp_neq)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   163
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   164
lemmas shrK_neq_pubK = pubK_neq_shrK [THEN not_sym]
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   165
declare shrK_neq_pubK [simp]
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   166
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   167
lemma priEK_noteq_shrK [simp]: "priEK A \<noteq> shrK B" 
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   168
by auto
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   169
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   170
lemma publicKey_notin_image_shrK [simp]: "publicKey b x \<notin> shrK ` AA"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   171
by auto
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   172
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   173
lemma privateKey_notin_image_shrK [simp]: "privateKey b x \<notin> shrK ` AA"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   174
by auto
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   175
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   176
lemma shrK_notin_image_publicKey [simp]: "shrK x \<notin> publicKey b ` AA"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   177
by auto
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   178
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   179
lemma shrK_notin_image_privateKey [simp]: "shrK x \<notin> invKey ` publicKey b ` AA" 
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   180
by auto
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   181
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   182
lemma shrK_image_eq [simp]: "(shrK x \<in> shrK ` AA) = (x \<in> AA)"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   183
by auto
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   184
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   185
text{*For some reason, moving this up can make some proofs loop!*}
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   186
declare invKey_K [simp]
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   187
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   188
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   189
subsection{*Initial States of Agents*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   190
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   191
text{*Note: for all practical purposes, all that matters is the initial
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   192
knowledge of the Spy.  All other agents are automata, merely following the
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   193
protocol.*}
2318
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
   194
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 3683
diff changeset
   195
primrec
2318
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
   196
        (*Agents know their private key and all public keys*)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   197
  initState_Server:
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   198
    "initState Server     =    
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   199
       {Key (priEK Server), Key (priSK Server)} \<union> 
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   200
       (Key ` range pubEK) \<union> (Key ` range pubSK) \<union> (Key ` range shrK)"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   201
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   202
  initState_Friend:
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   203
    "initState (Friend i) =    
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   204
       {Key (priEK(Friend i)), Key (priSK(Friend i)), Key (shrK(Friend i))} \<union> 
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   205
       (Key ` range pubEK) \<union> (Key ` range pubSK)"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   206
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   207
  initState_Spy:
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   208
    "initState Spy        =    
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   209
       (Key ` invKey ` pubEK ` bad) \<union> (Key ` invKey ` pubSK ` bad) \<union> 
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   210
       (Key ` shrK ` bad) \<union> 
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   211
       (Key ` range pubEK) \<union> (Key ` range pubSK)"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   212
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   213
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   214
text{*These lemmas allow reasoning about @{term "used evs"} rather than
13935
paulson
parents: 13926
diff changeset
   215
   @{term "knows Spy evs"}, which is useful when there are private Notes. 
paulson
parents: 13926
diff changeset
   216
   Because they depend upon the definition of @{term initState}, they cannot
paulson
parents: 13926
diff changeset
   217
   be moved up.*}
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   218
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   219
lemma used_parts_subset_parts [rule_format]:
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   220
     "\<forall>X \<in> used evs. parts {X} \<subseteq> used evs"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   221
apply (induct evs) 
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   222
 prefer 2
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   223
 apply (simp add: used_Cons)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   224
 apply (rule ballI)  
13935
paulson
parents: 13926
diff changeset
   225
 apply (case_tac a, auto)  
paulson
parents: 13926
diff changeset
   226
apply (auto dest!: parts_cut) 
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   227
txt{*Base case*}
13935
paulson
parents: 13926
diff changeset
   228
apply (simp add: used_Nil) 
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   229
done
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   230
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   231
lemma MPair_used_D: "{|X,Y|} \<in> used H ==> X \<in> used H & Y \<in> used H"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   232
by (drule used_parts_subset_parts, simp, blast)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   233
17990
86d462f305e0 tidied away duplicate thm
paulson
parents: 16417
diff changeset
   234
text{*There was a similar theorem in Event.thy, so perhaps this one can
86d462f305e0 tidied away duplicate thm
paulson
parents: 16417
diff changeset
   235
  be moved up if proved directly by induction.*}
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   236
lemma MPair_used [elim!]:
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   237
     "[| {|X,Y|} \<in> used H;
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   238
         [| X \<in> used H; Y \<in> used H |] ==> P |] 
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   239
      ==> P"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   240
by (blast dest: MPair_used_D) 
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   241
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   242
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   243
text{*Rewrites should not refer to  @{term "initState(Friend i)"} because
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   244
  that expression is not in normal form.*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   245
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   246
lemma keysFor_parts_initState [simp]: "keysFor (parts (initState C)) = {}"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   247
apply (unfold keysFor_def)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   248
apply (induct_tac "C")
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   249
apply (auto intro: range_eqI)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   250
done
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   251
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   252
lemma Crypt_notin_initState: "Crypt K X \<notin> parts (initState B)"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   253
by (induct B, auto)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   254
13935
paulson
parents: 13926
diff changeset
   255
lemma Crypt_notin_used_empty [simp]: "Crypt K X \<notin> used []"
paulson
parents: 13926
diff changeset
   256
by (simp add: Crypt_notin_initState used_Nil)
paulson
parents: 13926
diff changeset
   257
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   258
(*** Basic properties of shrK ***)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   259
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   260
(*Agents see their own shared keys!*)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   261
lemma shrK_in_initState [iff]: "Key (shrK A) \<in> initState A"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   262
by (induct_tac "A", auto)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   263
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   264
lemma shrK_in_knows [iff]: "Key (shrK A) \<in> knows A evs"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   265
by (simp add: initState_subset_knows [THEN subsetD])
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   266
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   267
lemma shrK_in_used [iff]: "Key (shrK A) \<in> used evs"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   268
by (rule initState_into_used, blast)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   269
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   270
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   271
(** Fresh keys never clash with long-term shared keys **)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   272
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   273
(*Used in parts_induct_tac and analz_Fake_tac to distinguish session keys
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   274
  from long-term shared keys*)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   275
lemma Key_not_used [simp]: "Key K \<notin> used evs ==> K \<notin> range shrK"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   276
by blast
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   277
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   278
lemma shrK_neq: "Key K \<notin> used evs ==> shrK B \<noteq> K"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   279
by blast
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   280
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   281
lemmas neq_shrK = shrK_neq [THEN not_sym]
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   282
declare neq_shrK [simp]
2318
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
   283
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
   284
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   285
subsection{*Function @{term spies} *}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   286
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   287
lemma not_SignatureE [elim!]: "b \<noteq> Signature \<Longrightarrow> b = Encryption"
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   288
  by (cases b, auto) 
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   289
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   290
text{*Agents see their own private keys!*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   291
lemma priK_in_initState [iff]: "Key (privateKey b A) \<in> initState A"
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   292
  by (cases A, auto)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   293
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   294
text{*Agents see all public keys!*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   295
lemma publicKey_in_initState [iff]: "Key (publicKey b A) \<in> initState B"
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   296
  by (cases B, auto) 
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   297
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   298
text{*All public keys are visible*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   299
lemma spies_pubK [iff]: "Key (publicKey b A) \<in> spies evs"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   300
apply (induct_tac "evs")
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   301
apply (auto simp add: imageI knows_Cons split add: event.split)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   302
done
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   303
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   304
lemmas analz_spies_pubK = spies_pubK [THEN analz.Inj]
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   305
declare analz_spies_pubK [iff]
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   306
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   307
text{*Spy sees private keys of bad agents!*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   308
lemma Spy_spies_bad_privateKey [intro!]:
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   309
     "A \<in> bad ==> Key (privateKey b A) \<in> spies evs"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   310
apply (induct_tac "evs")
18749
31c2af8b0c60 replacement of bool by a datatype (making problems first-order). More lemma names
paulson
parents: 18570
diff changeset
   311
apply (auto simp add: imageI knows_Cons split add: event.split)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   312
done
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   313
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   314
text{*Spy sees long-term shared keys of bad agents!*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   315
lemma Spy_spies_bad_shrK [intro!]:
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   316
     "A \<in> bad ==> Key (shrK A) \<in> spies evs"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   317
apply (induct_tac "evs")
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   318
apply (simp_all add: imageI knows_Cons split add: event.split)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   319
done
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   320
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   321
lemma publicKey_into_used [iff] :"Key (publicKey b A) \<in> used evs"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   322
apply (rule initState_into_used)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   323
apply (rule publicKey_in_initState [THEN parts.Inj])
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   324
done
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   325
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   326
lemma privateKey_into_used [iff]: "Key (privateKey b A) \<in> used evs"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   327
apply(rule initState_into_used)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   328
apply(rule priK_in_initState [THEN parts.Inj])
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   329
done
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   330
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   331
(*For case analysis on whether or not an agent is compromised*)
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   332
lemma Crypt_Spy_analz_bad:
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   333
     "[| Crypt (shrK A) X \<in> analz (knows Spy evs);  A \<in> bad |]  
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   334
      ==> X \<in> analz (knows Spy evs)"
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   335
by force
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   336
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   337
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   338
subsection{*Fresh Nonces*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   339
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   340
lemma Nonce_notin_initState [iff]: "Nonce N \<notin> parts (initState B)"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   341
by (induct_tac "B", auto)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   342
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   343
lemma Nonce_notin_used_empty [simp]: "Nonce N \<notin> used []"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   344
by (simp add: used_Nil)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   345
11104
f2024fed9f0c partial conversion to Isar script style
paulson
parents: 10833
diff changeset
   346
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   347
subsection{*Supply fresh nonces for possibility theorems*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   348
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   349
text{*In any trace, there is an upper bound N on the greatest nonce in use*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   350
lemma Nonce_supply_lemma: "EX N. ALL n. N<=n --> Nonce n \<notin> used evs"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   351
apply (induct_tac "evs")
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   352
apply (rule_tac x = 0 in exI)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   353
apply (simp_all (no_asm_simp) add: used_Cons split add: event.split)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   354
apply safe
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   355
apply (rule msg_Nonce_supply [THEN exE], blast elim!: add_leE)+
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   356
done
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   357
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   358
lemma Nonce_supply1: "EX N. Nonce N \<notin> used evs"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   359
by (rule Nonce_supply_lemma [THEN exE], blast)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   360
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   361
lemma Nonce_supply: "Nonce (@ N. Nonce N \<notin> used evs) \<notin> used evs"
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   362
apply (rule Nonce_supply_lemma [THEN exE])
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   363
apply (rule someI, fast)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   364
done
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   365
13956
8fe7e12290e1 improved presentation of HOL/Auth theories
paulson
parents: 13935
diff changeset
   366
subsection{*Specialized Rewriting for Theorems About @{term analz} and Image*}
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   367
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   368
lemma insert_Key_singleton: "insert (Key K) H = Key ` {K} Un H"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   369
by blast
11104
f2024fed9f0c partial conversion to Isar script style
paulson
parents: 10833
diff changeset
   370
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   371
lemma insert_Key_image: "insert (Key K) (Key`KK \<union> C) = Key ` (insert K KK) \<union> C"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   372
by blast
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   373
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   374
ML
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   375
{*
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   376
val Key_not_used = thm "Key_not_used";
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   377
val insert_Key_singleton = thm "insert_Key_singleton";
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   378
val insert_Key_image = thm "insert_Key_image";
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   379
*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   380
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   381
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   382
lemma Crypt_imp_keysFor :"[|Crypt K X \<in> H; K \<in> symKeys|] ==> K \<in> keysFor H"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13922
diff changeset
   383
by (drule Crypt_imp_invKey_keysFor, simp)
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   384
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   385
text{*Lemma for the trivial direction of the if-and-only-if of the 
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   386
Session Key Compromise Theorem*}
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   387
lemma analz_image_freshK_lemma:
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   388
     "(Key K \<in> analz (Key`nE \<union> H)) --> (K \<in> nE | Key K \<in> analz H)  ==>  
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   389
         (Key K \<in> analz (Key`nE \<union> H)) = (K \<in> nE | Key K \<in> analz H)"
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   390
by (blast intro: analz_mono [THEN [2] rev_subsetD])
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   391
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   392
lemmas analz_image_freshK_simps =
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   393
       simp_thms mem_simps --{*these two allow its use with @{text "only:"}*}
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   394
       disj_comms 
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   395
       image_insert [THEN sym] image_Un [THEN sym] empty_subsetI insert_subset
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   396
       analz_insert_eq Un_upper2 [THEN analz_mono, THEN subsetD]
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   397
       insert_Key_singleton 
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   398
       Key_not_used insert_Key_image Un_assoc [THEN sym]
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   399
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   400
ML
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   401
{*
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   402
val analz_image_freshK_lemma = thm "analz_image_freshK_lemma";
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   403
val analz_image_freshK_simps = thms "analz_image_freshK_simps";
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   404
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   405
val analz_image_freshK_ss = 
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   406
     simpset() delsimps [image_insert, image_Un]
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   407
	       delsimps [imp_disjL]    (*reduces blow-up*)
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   408
	       addsimps thms "analz_image_freshK_simps"
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   409
*}
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   410
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   411
method_setup analz_freshK = {*
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   412
    Method.no_args
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   413
     (Method.METHOD
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   414
      (fn facts => EVERY [REPEAT_FIRST (resolve_tac [allI, ballI, impI]),
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   415
                          REPEAT_FIRST (rtac analz_image_freshK_lemma),
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   416
                          ALLGOALS (asm_simp_tac analz_image_freshK_ss)])) *}
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   417
    "for proving the Session Key Compromise theorem"
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   418
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   419
subsection{*Specialized Methods for Possibility Theorems*}
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   420
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   421
ML
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   422
{*
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   423
val Nonce_supply = thm "Nonce_supply";
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   424
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   425
(*Tactic for possibility theorems (Isar interface)*)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   426
fun gen_possibility_tac ss state = state |>
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   427
    REPEAT (*omit used_Says so that Nonces start from different traces!*)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   428
    (ALLGOALS (simp_tac (ss delsimps [used_Says]))
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   429
     THEN
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   430
     REPEAT_FIRST (eq_assume_tac ORELSE' 
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   431
                   resolve_tac [refl, conjI, Nonce_supply]))
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   432
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   433
(*Tactic for possibility theorems (ML script version)*)
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   434
fun possibility_tac state = gen_possibility_tac (simpset()) state
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   435
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   436
(*For harder protocols (such as Recur) where we have to set up some
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   437
  nonces and keys initially*)
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   438
fun basic_possibility_tac st = st |>
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   439
    REPEAT 
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   440
    (ALLGOALS (asm_simp_tac (simpset() setSolver safe_solver))
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   441
     THEN
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   442
     REPEAT_FIRST (resolve_tac [refl, conjI]))
13922
75ae4244a596 Changes required by the certified email protocol
paulson
parents: 11287
diff changeset
   443
*}
11104
f2024fed9f0c partial conversion to Isar script style
paulson
parents: 10833
diff changeset
   444
f2024fed9f0c partial conversion to Isar script style
paulson
parents: 10833
diff changeset
   445
method_setup possibility = {*
11270
a315a3862bb4 better treatment of methods: uses Method.ctxt_args to refer to current
paulson
parents: 11104
diff changeset
   446
    Method.ctxt_args (fn ctxt =>
a315a3862bb4 better treatment of methods: uses Method.ctxt_args to refer to current
paulson
parents: 11104
diff changeset
   447
        Method.METHOD (fn facts =>
15032
02aed07e01bf local_cla/simpset_of;
wenzelm
parents: 14261
diff changeset
   448
            gen_possibility_tac (local_simpset_of ctxt))) *}
11104
f2024fed9f0c partial conversion to Isar script style
paulson
parents: 10833
diff changeset
   449
    "for proving possibility theorems"
2318
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
   450
6d3f7c7f70b0 Public-key examples
paulson
parents:
diff changeset
   451
end