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

This commit is contained in:
Pavol Rusnak 2016-11-06 16:19:25 +01:00
parent f9827666f8
commit c95ed063db
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
1 changed files with 0 additions and 12 deletions

View File

@ -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()