aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--python2/sha3.py4
-rw-r--r--python3/sha3.py4
2 files changed, 4 insertions, 4 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
diff --git a/python3/sha3.py b/python3/sha3.py
index 6c3f700..117530b 100644
--- a/python3/sha3.py
+++ b/python3/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