Skip to content

Commit 38d3229

Browse files
authored
Update tscipherlib.py
make stringin to lowercase to prevent crashes
1 parent e029fad commit 38d3229

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tscipherlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def cdecode(array,key):
4141
return output
4242

4343
def cdecodeh(stringin,key):
44-
stredit = stringin
44+
stredit = stringin.lower()
4545
if len(stringin)%2 == 1:
4646
stredit = "0" + stringin
4747
hexdigits = {"0" : 0 ,

0 commit comments

Comments
 (0)