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.)
This commit is contained in:
Kenn Kitchen
2025-09-04 12:55:04 -04:00
parent d45fe6af8c
commit 7fe2247f17

View File

@@ -1,4 +1,5 @@
import sys import sys
import time
alphaBase = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz,. !=" alphaBase = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz,. !="
@@ -29,6 +30,8 @@ def main():
def encode(offset, message): def encode(offset, message):
print("Encoding!") print("Encoding!")
current_timestamp = time.time()
print(current_timestamp)
resultMessage = "" resultMessage = ""