keccak
keccak copied to clipboard
Pure python keccak implementation
#3 Update with SHA-3 in addition to current Keccak functions, and upgrade to python 3.
[sweg@CNU352DG8J keccak]$ python2 tests.py tests passed [sweg@CNU352DG8J keccak]$ python3 tests.py tests passed - use hexlify instead of str.encode('hex') - use unhexlify and compare actual bytestring values in tests - bytes2str...
Hello, I'm writing an educational, hybrid cryptosystem in pure python and was wondering what, if any, changes i'd need to make to make this Keccak implementation SHA-3 compliant. I think...