trezor.crypto.hashlib: remove HashIO (lives as HashWriter somewhere else)

pull/25/head
Pavol Rusnak 8 years ago
parent f9827666f8
commit c95ed063db
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

@ -5,15 +5,3 @@ from TrezorCrypto import Sha256 as sha256
from TrezorCrypto import Sha512 as sha512
from TrezorCrypto import Sha3_256 as sha3_256
from TrezorCrypto import Sha3_512 as sha3_512
class HashIO:
def __init__(self, hashfunc=sha256):
self.hashfunc = hashfunc
self.ctx = hashfunc()
def write(self, data):
self.ctx.update(data)
def getvalue(self):
return self.ctx.digest()

Loading…
Cancel
Save