Skip to content

Instantly share code, notes, and snippets.

@Souptacular
Souptacular / SHA3Test.sol
Last active August 22, 2018 16:46
Testing SHA3 with Solidity
contract SHA3Test
{
function getSHA3Hash(bytes input) returns (bytes32 hashedOutput)
{
hashedOutput = sha3(input);
}
}
// Ethereum uses KECCAK-256. It should be noted that it does not follow