Files
BarsTiger 1127d7090d 1
2021-12-02 21:23:31 +02:00

6 lines
135 B
Python

import hashlib
mystring = input('Enter String to hash: ')
hash_object = hashlib.md5(mystring.encode())
print(hash_object.hexdigest())