diff options
Diffstat (limited to '')
-rw-r--r-- | python3/sha3.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python3/sha3.py b/python3/sha3.py index 009c59d..6c3f700 100644 --- a/python3/sha3.py +++ b/python3/sha3.py @@ -28,6 +28,10 @@ class SHA3: def __init__(self): + ''' + Constructor + ''' + self.RC = [0x0000000000000001, 0x0000000000008082, 0x800000000000808A, 0x8000000080008000, 0x000000000000808B, 0x0000000080000001, 0x8000000080008081, 0x8000000000008009, 0x000000000000008A, 0x0000000000000088, 0x0000000080008009, 0x000000008000000A, |