mirror of
https://github.com/bitcoin/bips.git
synced 2025-05-12 12:03:29 +00:00
commit
8455e258b0
@ -566,7 +566,7 @@ class FSChaCha20:
|
|||||||
return ret
|
return ret
|
||||||
|
|
||||||
def crypt(self, chunk):
|
def crypt(self, chunk):
|
||||||
"""Encrypt or decypt chunk."""
|
"""Encrypt or decrypt chunk."""
|
||||||
ks = self.get_keystream_bytes(len(chunk))
|
ks = self.get_keystream_bytes(len(chunk))
|
||||||
ret = bytes([ks[i] ^ chunk[i] for i in range(len(chunk))])
|
ret = bytes([ks[i] ^ chunk[i] for i in range(len(chunk))])
|
||||||
if ((self.chunk_counter + 1) % REKEY_INTERVAL) == 0:
|
if ((self.chunk_counter + 1) % REKEY_INTERVAL) == 0:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user