Guard_Shared.thy
Interaktion und PortierbarkeitIsabelle
(* Title: HOL/Auth/Guard/Guard_Shared.thy Author: Frederic Blanqui, University of Cambridge Computer Laboratory Copyright 2002 University of Cambridge
*)
section\<open>lemmas on guarded messages for protocols with symmetric keys\<close>
theory Guard_Shared imports Guard GuardK "../Shared"begin
subsection\<open>Extensions to Theory \<open>Shared\<close>\<close>
declare initState.simps [simp del]
subsubsection\<open>a little abbreviation\<close>
abbreviation
Ciph :: "agent => msg => msg"where "Ciph A X == Crypt (shrK A) X"
subsubsection\<open>agent associated to a key\<close>
definition agt :: "key => agent"where "agt K == SOME A. K = shrK A"
lemma agt_shrK [simp]: "agt (shrK A) = A" by (simp add: agt_def)
subsubsection\<open>basic facts about \<^term>\<open>initState\<close>\<close>
lemma no_Crypt_in_parts_init [simp]: "Crypt K X \ parts (initState A)" by (cases A, auto simp: initState.simps)
lemma no_Crypt_in_analz_init [simp]: "Crypt K X \ analz (initState A)" by auto
lemma no_shrK_in_analz_init [simp]: "A \ bad \<Longrightarrow> Key (shrK A) \<notin> analz (initState Spy)" by (auto simp: initState.simps)
lemma shrK_notin_initState_Friend [simp]: "A \ Friend C \<Longrightarrow> Key (shrK A) \<notin> parts (initState (Friend C))" by (auto simp: initState.simps)
lemma keyset_init [iff]: "keyset (initState A)" by (cases A, auto simp: keyset_def initState.simps)
subsubsection\<open>sets of symmetric keys\<close>
definition shrK_set :: "key set => bool"where "shrK_set Ks \ \K. K \ Ks \ (\A. K = shrK A)"
lemma in_shrK_set: "\shrK_set Ks; K \ Ks\ \ \A. K = shrK A" by (simp add: shrK_set_def)
lemma shrK_set1 [iff]: "shrK_set {shrK A}" by (simp add: shrK_set_def)
lemma shrK_set2 [iff]: "shrK_set {shrK A, shrK B}" by (simp add: shrK_set_def)
subsubsection\<open>sets of good keys\<close>
definition good :: "key set \ bool" where "good Ks \ \K. K \ Ks \ agt K \ bad"
lemma in_good: "\good Ks; K \ Ks\ \ agt K \ bad" by (simp add: good_def)
lemma good1 [simp]: "A \ bad \ good {shrK A}" by (simp add: good_def)
lemma good2 [simp]: "\A \ bad; B \ bad\ \ good {shrK A, shrK B}" by (simp add: good_def)
subsection\<open>Proofs About Guarded Messages\<close>
subsubsection\<open>small hack\<close>
lemma shrK_is_invKey_shrK: "shrK A = invKey (shrK A)" by simp
lemma"Nonce n \ parts {X} \ Crypt (shrK A) X \ guard n {shrK A}" apply (rule shrK_is_invKey_shrK_substI, rule invKey_invKey_substI) by (rule Guard_Nonce, simp+)
subsubsection\<open>guardedness results on nonces\<close>
lemma guard_ciph [simp]: "shrK A \ Ks \ Ciph A X \ guard n Ks" by (rule Guard_Nonce, simp)
lemma guardK_ciph [simp]: "shrK A \ Ks \ Ciph A X \ guardK n Ks" by (rule Guard_Key, simp)
lemma Guard_init [iff]: "Guard n Ks (initState B)" by (induct B, auto simp: Guard_def initState.simps)
lemma Guard_knows_max': "Guard n Ks (knows_max' C evs) \<Longrightarrow> Guard n Ks (knows_max C evs)" by (simp add: knows_max_def)
lemma Nonce_not_used_Guard_spies [dest]: "Nonce n \ used evs \<Longrightarrow> Guard n Ks (spies evs)" by (auto simp: Guard_def dest: not_used_not_known parts_sub)
lemma Nonce_not_used_Guard [dest]: "\evs \ p; Nonce n \ used evs;
Gets_correct p; one_step p\<rbrakk> \<Longrightarrow> Guard n Ks (knows (Friend C) evs)" by (auto simp: Guard_def dest: known_used parts_trans)
lemma Nonce_not_used_Guard_max [dest]: "\evs \ p; Nonce n \ used evs;
Gets_correct p; one_step p\<rbrakk> \<Longrightarrow> Guard n Ks (knows_max (Friend C) evs)" by (auto simp: Guard_def dest: known_max_used parts_trans)
lemma Nonce_not_used_Guard_max' [dest]: "\evs \ p; Nonce n \ used evs;
Gets_correct p; one_step p\<rbrakk> \<Longrightarrow> Guard n Ks (knows_max' (Friend C) evs)" apply (rule_tac H="knows_max (Friend C) evs"in Guard_mono) by (auto simp: knows_max_def)
subsubsection\<open>guardedness results on keys\<close>
lemma GuardK_init [simp]: "n \ range shrK \ GuardK n Ks (initState B)" by (induct B, auto simp: GuardK_def initState.simps)
lemma GuardK_knows_max': "\GuardK n A (knows_max' C evs); n \ range shrK\ \<Longrightarrow> GuardK n A (knows_max C evs)" by (simp add: knows_max_def)
lemma Key_not_used_GuardK_spies [dest]: "Key n \ used evs \<Longrightarrow> GuardK n A (spies evs)" by (auto simp: GuardK_def dest: not_used_not_known parts_sub)
lemma Key_not_used_GuardK [dest]: "\evs \ p; Key n \ used evs;
Gets_correct p; one_step p\<rbrakk> \<Longrightarrow> GuardK n A (knows (Friend C) evs)" by (auto simp: GuardK_def dest: known_used parts_trans)
lemma Key_not_used_GuardK_max [dest]: "\evs \ p; Key n \ used evs;
Gets_correct p; one_step p\<rbrakk> \<Longrightarrow> GuardK n A (knows_max (Friend C) evs)" by (auto simp: GuardK_def dest: known_max_used parts_trans)
lemma Key_not_used_GuardK_max' [dest]: "\evs \ p; Key n \ used evs;
Gets_correct p; one_step p\<rbrakk> \<Longrightarrow> GuardK n A (knows_max' (Friend C) evs)" apply (rule_tac H="knows_max (Friend C) evs"in GuardK_mono) by (auto simp: knows_max_def)
subsubsection\<open>regular protocols\<close>
definition regular :: "event list set => bool"where "regular p \ \evs A. evs \ p \ (Key (shrK A) \ parts (spies evs)) = (A \ bad)"
lemma shrK_parts_iff_bad [simp]: "\evs \ p; regular p\ \
(Key (shrK A) \<in> parts (spies evs)) = (A \<in> bad)" by (auto simp: regular_def)
lemma shrK_analz_iff_bad [simp]: "\evs \ p; regular p\ \
(Key (shrK A) \<in> analz (spies evs)) = (A \<in> bad)" by auto
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.