Hash: added doctests + little fixes
[python-cryptoplus.git] / src / CryptoPlus / Hash / __init__.py
blobaf5d8adf82931ad406ae5d4abc22e54e8baec1a3
1 # hash functions of pycrypto can be just imported
2 # wrapping might be a better idea if docstrings need to be expanded
3 # wrapping in Cipher was needed to make the new chaining modes available
4 from Crypto.Hash import SHA, SHA256, MD5, MD2, MD4, HMAC
6 __all__ = ["SHA","SHA256","MD5","MD2","MD4","HMAC","RIPEMD"]