e8f26d64f904d8919b02649550873d513e1a2bc7
[python-cryptoplus.git] / src / CryptoPlus / Hash / python_SHA256.py
blobe8f26d64f904d8919b02649550873d513e1a2bc7
1 from pysha256 import sha256
3 __all__ = ['new','digest_size']
5 def new(data=""):
6 return sha256(data)
8 digest_size = sha256.digest_size