From 946a9f9ddd6ac6b91604e98f42d635ff3b315e24 Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Tue, 25 Feb 2014 00:58:38 +0000 Subject: [PATCH] misc/simulators/hashbasedsig.py: fix an incorrect comment. Signed-off-by: Daira Hopwood --- misc/simulators/hashbasedsig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/simulators/hashbasedsig.py b/misc/simulators/hashbasedsig.py index 640331ae..36eed3a0 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) -- 2.45.2