diff --git a/misc/simulators/hashbasedsig.py b/misc/simulators/hashbasedsig.py index 640331aec..36eed3a05 100644 --- a/misc/simulators/hashbasedsig.py +++ b/misc/simulators/hashbasedsig.py @@ -34,7 +34,7 @@ def ceil_div(x, y): def floor_div(x, y): return int(floor(float(x) / float(y))) -# number of compression function evaluations to hash k hash-outputs +# number of compression function evaluations to hash k bits # we assume that there is a label in each block def compressions(k): return ceil_div(k + L_pad, L_block - L_label)