File: __init__.py

package info (click to toggle)
python-eth-hash 0.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 308 kB
  • sloc: python: 659; makefile: 233
file content (14 lines) | stat: -rw-r--r-- 352 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
A collection of optional backends that implement hashing.

You must manually select and install the backend you want. If the backend is
not installed, then trying to import the module for that backend will cause an
:class:`ImportError`.

See :ref:`Choose a hashing backend` for more.
"""

SUPPORTED_BACKENDS = [
    "pycryptodome",
    "pysha3",
]