Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 413 Bytes

sha224.rst

File metadata and controls

18 lines (13 loc) · 413 Bytes

SHA-224

SHA-224 belongs to the SHA-2 family of cryptographic hashes. It produces the 224 bit digest of a message.

>>> from Crypto.Hash import SHA224
>>>
>>> h = SHA224.new()
>>> h.update(b'Hello')
>>> print h.hexdigest()

SHA stands for Secure Hash Algorithm.

.. automodule:: Crypto.Hash.SHA224
    :members: