rc5/encrypt.lua
2022-03-19 15:11:45 -04:00

16 lines
280 B
Lua

--[[
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
]]