1
0
mirror of https://github.com/bitcoin/bips.git synced 2026-03-09 15:53:54 +00:00

Update reference.py

This commit is contained in:
leopardracer
2025-04-06 22:56:17 +03:00
committed by GitHub
parent 3ccc59dbdb
commit 54c39b27b9

View File

@@ -566,7 +566,7 @@ class FSChaCha20:
return ret
def crypt(self, chunk):
"""Encrypt or decypt chunk."""
"""Encrypt or decrypt chunk."""
ks = self.get_keystream_bytes(len(chunk))
ret = bytes([ks[i] ^ chunk[i] for i in range(len(chunk))])
if ((self.chunk_counter + 1) % REKEY_INTERVAL) == 0: