mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
23 lines
633 B
Solidity
23 lines
633 B
Solidity
contract C {
|
|
function f() pure public returns (bytes32) {
|
|
return keccak256(uint8(1));
|
|
}
|
|
function g() pure public returns (bytes32) {
|
|
return sha3(uint8(1));
|
|
}
|
|
function h() pure public returns (bytes32) {
|
|
return sha256(uint8(1));
|
|
}
|
|
function j() pure public returns (bytes32) {
|
|
return ripemd160(uint8(1));
|
|
}
|
|
function k() pure public returns (bytes) {
|
|
return abi.encodePacked(uint8(1));
|
|
}
|
|
function l() pure public returns (bytes) {
|
|
return abi.encode(1);
|
|
}
|
|
}
|
|
// ----
|
|
// Warning: (168-182): "sha3" has been deprecated in favour of "keccak256"
|