diff --git a/MD5.py b/MD5.py new file mode 100644 index 0000000..1080a0d --- /dev/null +++ b/MD5.py @@ -0,0 +1,5 @@ + +import hashlib +password = ("Kangjun1234") +md5_hash = hashlib.md5(password.encode()).hexdigest() +print(md5_hash)