Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
gengarrrr committed Oct 25, 2024
1 parent 34186ab commit 23f099c
Show file tree
Hide file tree
Showing 2 changed files with 746 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/Crypto/RC5/rc5Script.sml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
(*===========================================================================*)
(* The Data Encryption Standard (DES) in HOL *)
(* The RC5 in HOL *)
(*===========================================================================*)

open HolKernel Parse boolLib bossLib;

open arithmeticTheory numLib pairTheory fcpTheory fcpLib wordsTheory wordsLib
listTheory listLib sortingTheory pred_setTheory combinTheory hurdUtils;

val _ = guessing_word_lengths := true;
val _ = new_theory "rc5";

val _ = new_theory "rc5";
val _ = guessing_word_lengths := true;
val fcp_ss = std_ss ++ fcpLib.FCP_ss;
Type block[pp] = “:word32 # word32”
(* Data Table *)
Expand Down Expand Up @@ -577,5 +577,5 @@ Proof
QED

val _ = export_theory();
val _ = html_theory "RC5";
val _ = html_theory "rc5";

Loading

0 comments on commit 23f099c

Please sign in to comment.