-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoken_encrypt_v1.py
60 lines (52 loc) · 1.33 KB
/
token_encrypt_v1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from sys import argv
def mencode(string:str)->str:
a=''
for i in string:
# print(ord(i))
a+=str(len(str(ord(i))))+str(ord(i))
return a
def mdecode(string:str)->str:
# storage conversion
a=""
i=0
while(i<len(string)):
clen=int(string[i])
# print(i,i+clen+1)
a+=chr(int(string[i+1:i+clen+1]))
i=i+1+clen
return a
# public Key
filename="publicKey"
# Toggle switch
# 0 -> for encoding/encrypting
# 1-> for decoding/decrypting
toggle=0
try:
if(argv[1] in ["encrypt","encode"]):
toggle=1
elif(argv[1] in ["decrypt","decode"]):
toggle=0
else:
print("Invalid Switch Condition")
exit(1)
# filename validation/correction
x=argv[2].split(".")
if(len(x)>1):
if(x[-1]=="tk1"):
filename= argv[2]
else:
raise TypeError("Unsupported File Type : "+argv[2])
else:
filename=argv[2]+".tk1"
except IndexError:
filename+=".tk1"
# For Encoding
if(toggle):
print("Will Generate/Update",filename,"file")
with open(filename,"w") as keyFile:
keyFile.write(mencode(input("Enter Message to Encrypt: ")))
# For Decoding
else:
print("Reading/Searching for",filename,"file")
with open(filename) as keyFile:
print("\n",mdecode(keyFile.readline().strip()))