From 7fe2247f178ece036584c406d70b66fef343af4a Mon Sep 17 00:00:00 2001 From: Kenn Kitchen Date: Thu, 4 Sep 2025 12:55:04 -0400 Subject: [PATCH] Added timestamp. The timestamp on encode is used to help with human decoding. (Not that we're gonna do that, but hey, let's finish what we started here.) --- main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.py b/main.py index 06fcb48..f29f518 100644 --- a/main.py +++ b/main.py @@ -1,4 +1,5 @@ import sys +import time alphaBase = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz,. !=" @@ -29,6 +30,8 @@ def main(): def encode(offset, message): print("Encoding!") + current_timestamp = time.time() + print(current_timestamp) resultMessage = ""