Skip to content

Commit 7bf091d

Browse files
committed
don't over write inbuilt function name
1 parent 9d0901d commit 7bf091d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dilithium_py/ml_dsa/ml_dsa.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ def set_drbg_seed(self, seed: bytes):
5858
"""
5959

6060
@staticmethod
61-
def _h(input: bytes, length: int) -> bytes:
61+
def _h(in_bytes: bytes, length: int) -> bytes:
6262
"""
6363
H: B^* -> B^*
6464
"""
65-
return shake256(input).read(length)
65+
return shake256(in_bytes).read(length)
6666

6767
def _expand_matrix_from_seed(self, rho: bytes) -> Matrix:
6868
"""

0 commit comments

Comments
 (0)