Generate MD2 Hash using Python

PyCryptodome library

  1. Install PyCryptodome library from the command line:
pip install pycryptodome
  1. Generate MD2 hash:
from Crypto.Hash import MD2

text = 'Hello'
hashObject = MD2.new()
hashObject.update(text.encode('utf-8'))
digest = hashObject.hexdigest()

print(digest)

Leave a Comment

Cancel reply

Your email address will not be published.