aboutsummaryrefslogtreecommitdiffstats
path: root/sha3sum.py
diff options
context:
space:
mode:
Diffstat (limited to 'sha3sum.py')
-rwxr-xr-xsha3sum.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sha3sum.py b/sha3sum.py
index c508254..f7e297a 100755
--- a/sha3sum.py
+++ b/sha3sum.py
@@ -532,7 +532,7 @@ class SHA3:
while (olen > 0):
i = 0
while (i < ni) and (j < nn):
- v = SHA3.S[(i % 5) * 5 + i // 5] # FIXME
+ v = SHA3.S[(i % 5) * 5 + i // 5]
for _ in range(ww):
if (j < nn):
rc[ptr] = v & 255