Creates Keccak hash of the input
Uint8List keccak(dynamic a, {int bits = 256}) { a = toBuffer(a); Digest sha3 = Digest('Keccak/$bits'); return sha3.process(a); }