src/HOL/Auth/All_Symmetric.thy
author desharna
Sat, 25 Jun 2022 13:21:27 +0200
changeset 76054 a4b47c684445
parent 62145 5b946c81dfbf
permissions -rw-r--r--
moved mono and strict_mono to Fun and redefined them as abbreviations

theory All_Symmetric
imports Message
begin

text \<open>All keys are symmetric\<close>

overloading all_symmetric \<equiv> all_symmetric
begin
  definition "all_symmetric \<equiv> True"
end

lemma isSym_keys: "K \<in> symKeys"
  by (simp add: symKeys_def all_symmetric_def invKey_symmetric) 

end