diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-08-10 20:51:04 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-08-10 20:51:04 +0200 |
commit | 861394353b0033ecac9b4aa0857aeb68e226c4b8 (patch) | |
tree | cfca2434d9356d51f75bf91bc1184bfa6bd3a019 /python2 | |
parent | improved memoery management in java version (diff) | |
download | sha3sum-861394353b0033ecac9b4aa0857aeb68e226c4b8.tar.gz sha3sum-861394353b0033ecac9b4aa0857aeb68e226c4b8.tar.bz2 sha3sum-861394353b0033ecac9b4aa0857aeb68e226c4b8.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'python2')
-rw-r--r-- | python2/sha3.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python2/sha3.py b/python2/sha3.py index 088b8ad..649ee74 100644 --- a/python2/sha3.py +++ b/python2/sha3.py @@ -282,7 +282,7 @@ class SHA3: def toLane(self, message, rr, ww, off): ''' - Convert a chunk of char:s to a word + Convert a chunk of byte:s to a word @param message:bytes The message @param rr:int Bitrate in bytes @@ -301,7 +301,7 @@ class SHA3: def toLane64(self, message, rr, off): ''' - Convert a chunk of char:s to a 64-bit word + Convert a chunk of byte:s to a 64-bit word @param message:bytes The message @param rr:int Bitrate in bytes |