aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsha3sum.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sha3sum.py b/sha3sum.py
index 5742ec0..35b71dd 100755
--- a/sha3sum.py
+++ b/sha3sum.py
@@ -41,12 +41,12 @@ class SHA3:
:list<int> Round contants
'''
- B = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
+ B = [0] * 25
'''
- :list<list<int>> Keccak-f round temporary
+ :list<int> Keccak-f round temporary
'''
- C = [0, 0, 0, 0, 0]
+ C = [0] * 5
'''
:list<int> Keccak-f round temporary
'''