This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
NewerOlder