alexkueck commited on
Commit
695c26f
1 Parent(s): 5a62a33

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +5 -0
utils.py CHANGED
@@ -113,6 +113,11 @@ def detect_converted_mark(userinput):
113
  else:
114
  return False
115
 
 
 
 
 
 
116
 
117
 
118
 
 
113
  else:
114
  return False
115
 
116
+ ##########################################
117
+ #Hashing....
118
+ # Funktion zum Hashen des Eingabewerts
119
+ def hash_input(input_string):
120
+ return hashlib.sha256(input_string.encode()).hexdigest()
121
 
122
 
123