Replacement for md5 module in Python 3?

32.8k Views Asked by At

Is there any other module for md5?

3

There are 3 best solutions below

0
On

It is in hashlib

import hashlib
print(hashlib.md5('asd'.encode()).hexdigest())
0
On

It has been deprecated since version 2.5. You must use hashlib.

0
On

From: http://www.python.org/dev/peps/pep-0004/

MD5 have been replaced by the 'hashlib' module.