aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-06-08 09:30:57 +0200
committerMattias Andrée <maandree@operamail.com>2013-06-08 09:30:57 +0200
commit6d1a4c1ea0d387060985be545912e393e58063e9 (patch)
treeb89021454492b1c8ee1775b5088f66e8743a5c2a
parentremove unused variable (diff)
downloadsha3sum-6d1a4c1ea0d387060985be545912e393e58063e9.tar.gz
sha3sum-6d1a4c1ea0d387060985be545912e393e58063e9.tar.bz2
sha3sum-6d1a4c1ea0d387060985be545912e393e58063e9.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rwxr-xr-xpython3/sha3sum.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/python3/sha3sum.py b/python3/sha3sum.py
index 0824511..ae863c2 100755
--- a/python3/sha3sum.py
+++ b/python3/sha3sum.py
@@ -31,12 +31,12 @@ class SHA3:
'''
- RC=[0x0000000000000001, 0x0000000000008082, 0x800000000000808A, 0x8000000080008000,
- 0x000000000000808B, 0x0000000080000001, 0x8000000080008081, 0x8000000000008009,
- 0x000000000000008A, 0x0000000000000088, 0x0000000080008009, 0x000000008000000A,
- 0x000000008000808B, 0x800000000000008B, 0x8000000000008089, 0x8000000000008003,
- 0x8000000000008002, 0x8000000000000080, 0x000000000000800A, 0x800000008000000A,
- 0x8000000080008081, 0x8000000000008080, 0x0000000080000001, 0x8000000080008008]
+ RC = [0x0000000000000001, 0x0000000000008082, 0x800000000000808A, 0x8000000080008000,
+ 0x000000000000808B, 0x0000000080000001, 0x8000000080008081, 0x8000000000008009,
+ 0x000000000000008A, 0x0000000000000088, 0x0000000080008009, 0x000000008000000A,
+ 0x000000008000808B, 0x800000000000008B, 0x8000000000008089, 0x8000000000008003,
+ 0x8000000000008002, 0x8000000000000080, 0x000000000000800A, 0x800000008000000A,
+ 0x8000000080008081, 0x8000000000008080, 0x0000000080000001, 0x8000000080008008]
'''
:list<int> Round contants
'''