delete buffer

This commit is contained in:
BreakWa11 2015-10-22 10:41:40 +08:00
parent 3f66ec443f
commit 126afea524

View file

@ -134,6 +134,7 @@ class Encryptor(object):
self.decipher = self.get_cipher(self.key, self.method, 0, self.decipher = self.get_cipher(self.key, self.method, 0,
iv=decipher_iv) iv=decipher_iv)
buf = self.iv_buf[decipher_iv_len:] buf = self.iv_buf[decipher_iv_len:]
del self.iv_buf
return self.decipher.update(buf) return self.decipher.update(buf)
else: else:
return b'' return b''