From 0064eb7d2696139329448a6819b318b039fe7fae Mon Sep 17 00:00:00 2001 From: sa Date: Mon, 28 Mar 2022 14:35:14 -0400 Subject: [PATCH] updated header --- src/encrypt.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/encrypt.lua b/src/encrypt.lua index 2d9a3ae..522b63b 100644 --- a/src/encrypt.lua +++ b/src/encrypt.lua @@ -1,9 +1,15 @@ --[[ implementation of the RC5 cipher in Lua5.1 +Licensed under the GNU GPLv3 license -03/11/2022 +03/28/2022 Sean Smith sean@spacealien.xyz + +todo: +move setup, encrypt, and decrypt to functions +use file io to encrypt files + ]] local inspect = require 'inspect'