From 93ad0888a5530a3bee7c6a664fc6fb52f2f97d01 Mon Sep 17 00:00:00 2001 From: sa Date: Sat, 19 Mar 2022 15:07:17 -0400 Subject: [PATCH] added main lua file --- encrypt.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 encrypt.lua diff --git a/encrypt.lua b/encrypt.lua new file mode 100644 index 0000000..e72207f --- /dev/null +++ b/encrypt.lua @@ -0,0 +1,17 @@ +--[[ +implementation of the RC5 cipher in Lua + +03/11/2022 +Sean Smith +sean@spacealien.xyz + +-initialize the variables specified in the paper +-translate and copy the functions in the appendix of the paper +--were gonna use static variables of 32bit key for now +-do key expansion + + +]] + + +