We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d0901d commit 7bf091dCopy full SHA for 7bf091d
src/dilithium_py/ml_dsa/ml_dsa.py
@@ -58,11 +58,11 @@ def set_drbg_seed(self, seed: bytes):
58
"""
59
60
@staticmethod
61
- def _h(input: bytes, length: int) -> bytes:
+ def _h(in_bytes: bytes, length: int) -> bytes:
62
63
H: B^* -> B^*
64
65
- return shake256(input).read(length)
+ return shake256(in_bytes).read(length)
66
67
def _expand_matrix_from_seed(self, rho: bytes) -> Matrix:
68
0 commit comments