src/HOL/Auth/All_Symmetric.thy
author Andreas Lochbihler <mail@andreas-lochbihler.de>
Sun, 31 Jan 2021 12:10:20 +0100
changeset 73213 bb35f7f60d6c
parent 62145 5b946c81dfbf
permissions -rw-r--r--
contributors

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