public static byte[] computeSha3Hash(byte[] buffer) { Digest sha3 = new Keccak256(); return sha3.digest(buffer); }