diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-02-04 02:44:29 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-02-04 02:44:29 +0100 |
commit | 9f1dcfcb9d4df999397335c651776677c9f9472a (patch) | |
tree | 99997d916cc1d42fbe469b7c077809ca97db1553 /sha3sum.py | |
parent | more opt (diff) | |
download | sha3sum-9f1dcfcb9d4df999397335c651776677c9f9472a.tar.gz sha3sum-9f1dcfcb9d4df999397335c651776677c9f9472a.tar.bz2 sha3sum-9f1dcfcb9d4df999397335c651776677c9f9472a.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'sha3sum.py')
-rwxr-xr-x | sha3sum.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 ''' |