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:
3
main.py
3
main.py
@@ -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 = ""
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user