Link to this headingWhirlpool Link to this headingExample import hashlib, binascii whirlpool_hash = hashlib.new('whirlpool', b'hello') print("whirlpool('hello') =", binascii.hexlify(whirlpool_hash.digest())) #whirlpool('hello') = b'0a25f55d7308eca6b9567a7ed3bd1b46327f0f1ffdc804dd8bb5af40e88d78b88df0d002a89e2fdbd5876c523f1b67bc44e9f87047598e7548298ea1c81cfd73' Link to this headingImplementation