Skip to content

Commit 2b915d0

Browse files
Modify test_chacha20.py
1 parent 34a1e40 commit 2b915d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydatastructs/crypto/tests/test_chacha20.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import string
33
from pydatastructs.crypto.ChaCha20 import ChaCha20
44

5-
VALID_KEY = b"\x00" *32
5+
VALID_KEY = B"\x00" *32
66
assert len(VALID_KEY) == 32, "VALID_KEY must be exactly 32 bytes"
77
VALID_NONCE = B"\x00" * 12
88
assert len(VALID_NONCE) == 12, "VALID_NONCE must be exactly 12 bytes"

0 commit comments

Comments
 (0)