Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pycryptodomex / Doc / src / hash / sha3_256.rst
Size: Mime:
SHA3-256
=========

SHA3-256 belongs to the SHA-3 family of cryptographic hashes, as specified
in `FIPS 202`__.

The hash function produces the 256 bit digest of a message::

    >>> from Crypto.Hash import SHA3_256
    >>>
    >>> h_obj = SHA3_256.new()
    >>> h_obj.update(b'Some data')
    >>> print h_obj.hexdigest()

.. __: http://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf

*SHA* stands for Secure Hash Algorithm.

.. automodule:: Crypto.Hash.SHA3_256
    :members: