mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Use keccak256() in tests (and not sha3())
This commit is contained in:
parent
75e4a2be1b
commit
9e1c509cf5
@ -82,7 +82,7 @@ contract FixedFeeRegistrar is Registrar {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
function disown(string _name, address _refund) onlyrecordowner(_name) {
|
function disown(string _name, address _refund) onlyrecordowner(_name) {
|
||||||
delete m_recordData[uint(sha3(_name)) / 8];
|
delete m_recordData[uint(keccak256(_name)) / 8];
|
||||||
if (!_refund.send(c_fee))
|
if (!_refund.send(c_fee))
|
||||||
throw;
|
throw;
|
||||||
Changed(_name);
|
Changed(_name);
|
||||||
@ -118,7 +118,7 @@ contract FixedFeeRegistrar is Registrar {
|
|||||||
|
|
||||||
Record[2**253] m_recordData;
|
Record[2**253] m_recordData;
|
||||||
function m_record(string _name) constant internal returns (Record storage o_record) {
|
function m_record(string _name) constant internal returns (Record storage o_record) {
|
||||||
return m_recordData[uint(sha3(_name)) / 8];
|
return m_recordData[uint(keccak256(_name)) / 8];
|
||||||
}
|
}
|
||||||
uint constant c_fee = 69 ether;
|
uint constant c_fee = 69 ether;
|
||||||
}
|
}
|
||||||
|
@ -128,7 +128,7 @@ contract multiowned {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Replaces an owner `_from` with another `_to`.
|
// Replaces an owner `_from` with another `_to`.
|
||||||
function changeOwner(address _from, address _to) onlymanyowners(sha3(msg.data)) external {
|
function changeOwner(address _from, address _to) onlymanyowners(keccak256(msg.data)) external {
|
||||||
if (isOwner(_to)) return;
|
if (isOwner(_to)) return;
|
||||||
uint ownerIndex = m_ownerIndex[uint(_from)];
|
uint ownerIndex = m_ownerIndex[uint(_from)];
|
||||||
if (ownerIndex == 0) return;
|
if (ownerIndex == 0) return;
|
||||||
@ -140,7 +140,7 @@ contract multiowned {
|
|||||||
OwnerChanged(_from, _to);
|
OwnerChanged(_from, _to);
|
||||||
}
|
}
|
||||||
|
|
||||||
function addOwner(address _owner) onlymanyowners(sha3(msg.data)) external {
|
function addOwner(address _owner) onlymanyowners(keccak256(msg.data)) external {
|
||||||
if (isOwner(_owner)) return;
|
if (isOwner(_owner)) return;
|
||||||
|
|
||||||
clearPending();
|
clearPending();
|
||||||
@ -154,7 +154,7 @@ contract multiowned {
|
|||||||
OwnerAdded(_owner);
|
OwnerAdded(_owner);
|
||||||
}
|
}
|
||||||
|
|
||||||
function removeOwner(address _owner) onlymanyowners(sha3(msg.data)) external {
|
function removeOwner(address _owner) onlymanyowners(keccak256(msg.data)) external {
|
||||||
uint ownerIndex = m_ownerIndex[uint(_owner)];
|
uint ownerIndex = m_ownerIndex[uint(_owner)];
|
||||||
if (ownerIndex == 0) return;
|
if (ownerIndex == 0) return;
|
||||||
if (m_required > m_numOwners - 1) return;
|
if (m_required > m_numOwners - 1) return;
|
||||||
@ -166,7 +166,7 @@ contract multiowned {
|
|||||||
OwnerRemoved(_owner);
|
OwnerRemoved(_owner);
|
||||||
}
|
}
|
||||||
|
|
||||||
function changeRequirement(uint _newRequired) onlymanyowners(sha3(msg.data)) external {
|
function changeRequirement(uint _newRequired) onlymanyowners(keccak256(msg.data)) external {
|
||||||
if (_newRequired > m_numOwners) return;
|
if (_newRequired > m_numOwners) return;
|
||||||
m_required = _newRequired;
|
m_required = _newRequired;
|
||||||
clearPending();
|
clearPending();
|
||||||
@ -293,11 +293,11 @@ contract daylimit is multiowned {
|
|||||||
m_lastDay = today();
|
m_lastDay = today();
|
||||||
}
|
}
|
||||||
// (re)sets the daily limit. needs many of the owners to confirm. doesn't alter the amount already spent today.
|
// (re)sets the daily limit. needs many of the owners to confirm. doesn't alter the amount already spent today.
|
||||||
function setDailyLimit(uint _newLimit) onlymanyowners(sha3(msg.data)) external {
|
function setDailyLimit(uint _newLimit) onlymanyowners(keccak256(msg.data)) external {
|
||||||
m_dailyLimit = _newLimit;
|
m_dailyLimit = _newLimit;
|
||||||
}
|
}
|
||||||
// (re)sets the daily limit. needs many of the owners to confirm. doesn't alter the amount already spent today.
|
// (re)sets the daily limit. needs many of the owners to confirm. doesn't alter the amount already spent today.
|
||||||
function resetSpentToday() onlymanyowners(sha3(msg.data)) external {
|
function resetSpentToday() onlymanyowners(keccak256(msg.data)) external {
|
||||||
m_spentToday = 0;
|
m_spentToday = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -374,7 +374,7 @@ contract Wallet is multisig, multiowned, daylimit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// destroys the contract sending everything to `_to`.
|
// destroys the contract sending everything to `_to`.
|
||||||
function kill(address _to) onlymanyowners(sha3(msg.data)) external {
|
function kill(address _to) onlymanyowners(keccak256(msg.data)) external {
|
||||||
selfdestruct(_to);
|
selfdestruct(_to);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -398,7 +398,7 @@ contract Wallet is multisig, multiowned, daylimit {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
// determine our operation hash.
|
// determine our operation hash.
|
||||||
_r = sha3(msg.data, block.number);
|
_r = keccak256(msg.data, block.number);
|
||||||
if (!confirm(_r) && m_txs[_r].to == 0) {
|
if (!confirm(_r) && m_txs[_r].to == 0) {
|
||||||
m_txs[_r].to = _to;
|
m_txs[_r].to = _to;
|
||||||
m_txs[_r].value = _value;
|
m_txs[_r].value = _value;
|
||||||
|
@ -151,20 +151,20 @@ BOOST_AUTO_TEST_CASE(simple_contract)
|
|||||||
contract test {
|
contract test {
|
||||||
bytes32 public shaValue;
|
bytes32 public shaValue;
|
||||||
function f(uint a) {
|
function f(uint a) {
|
||||||
shaValue = sha3(a);
|
shaValue = keccak256(a);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
testCreationTimeGas(sourceCode);
|
testCreationTimeGas(sourceCode);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(store_sha3)
|
BOOST_AUTO_TEST_CASE(store_keccak256)
|
||||||
{
|
{
|
||||||
char const* sourceCode = R"(
|
char const* sourceCode = R"(
|
||||||
contract test {
|
contract test {
|
||||||
bytes32 public shaValue;
|
bytes32 public shaValue;
|
||||||
function test(uint a) {
|
function test(uint a) {
|
||||||
shaValue = sha3(a);
|
shaValue = keccak256(a);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
|
@ -1355,7 +1355,7 @@ BOOST_AUTO_TEST_CASE(multiple_elementary_accessors)
|
|||||||
function test() {
|
function test() {
|
||||||
data = 8;
|
data = 8;
|
||||||
name = "Celina";
|
name = "Celina";
|
||||||
a_hash = sha3(123);
|
a_hash = keccak256(123);
|
||||||
an_address = address(0x1337);
|
an_address = address(0x1337);
|
||||||
super_secret_data = 42;
|
super_secret_data = 42;
|
||||||
}
|
}
|
||||||
@ -1864,12 +1864,12 @@ BOOST_AUTO_TEST_CASE(selfdestruct)
|
|||||||
BOOST_CHECK_EQUAL(balanceAt(address), amount);
|
BOOST_CHECK_EQUAL(balanceAt(address), amount);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(sha3)
|
BOOST_AUTO_TEST_CASE(keccak256)
|
||||||
{
|
{
|
||||||
char const* sourceCode = R"(
|
char const* sourceCode = R"(
|
||||||
contract test {
|
contract test {
|
||||||
function a(bytes32 input) returns (bytes32 sha3hash) {
|
function a(bytes32 input) returns (bytes32 hash) {
|
||||||
return sha3(input);
|
return keccak256(input);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
@ -3110,13 +3110,13 @@ BOOST_AUTO_TEST_CASE(empty_name_return_parameter)
|
|||||||
BOOST_CHECK(callContractFunction("f(uint256)", 9) == encodeArgs(9));
|
BOOST_CHECK(callContractFunction("f(uint256)", 9) == encodeArgs(9));
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(sha3_multiple_arguments)
|
BOOST_AUTO_TEST_CASE(keccak256_multiple_arguments)
|
||||||
{
|
{
|
||||||
char const* sourceCode = R"(
|
char const* sourceCode = R"(
|
||||||
contract c {
|
contract c {
|
||||||
function foo(uint a, uint b, uint c) returns (bytes32 d)
|
function foo(uint a, uint b, uint c) returns (bytes32 d)
|
||||||
{
|
{
|
||||||
d = sha3(a, b, c);
|
d = keccak256(a, b, c);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
@ -3129,13 +3129,13 @@ BOOST_AUTO_TEST_CASE(sha3_multiple_arguments)
|
|||||||
toBigEndian(u256(13)))));
|
toBigEndian(u256(13)))));
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(sha3_multiple_arguments_with_numeric_literals)
|
BOOST_AUTO_TEST_CASE(keccak256_multiple_arguments_with_numeric_literals)
|
||||||
{
|
{
|
||||||
char const* sourceCode = R"(
|
char const* sourceCode = R"(
|
||||||
contract c {
|
contract c {
|
||||||
function foo(uint a, uint16 b) returns (bytes32 d)
|
function foo(uint a, uint16 b) returns (bytes32 d)
|
||||||
{
|
{
|
||||||
d = sha3(a, b, 145);
|
d = keccak256(a, b, 145);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
@ -3148,17 +3148,17 @@ BOOST_AUTO_TEST_CASE(sha3_multiple_arguments_with_numeric_literals)
|
|||||||
bytes(1, 0x91))));
|
bytes(1, 0x91))));
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(sha3_multiple_arguments_with_string_literals)
|
BOOST_AUTO_TEST_CASE(keccak256_multiple_arguments_with_string_literals)
|
||||||
{
|
{
|
||||||
char const* sourceCode = R"(
|
char const* sourceCode = R"(
|
||||||
contract c {
|
contract c {
|
||||||
function foo() returns (bytes32 d)
|
function foo() returns (bytes32 d)
|
||||||
{
|
{
|
||||||
d = sha3("foo");
|
d = keccak256("foo");
|
||||||
}
|
}
|
||||||
function bar(uint a, uint16 b) returns (bytes32 d)
|
function bar(uint a, uint16 b) returns (bytes32 d)
|
||||||
{
|
{
|
||||||
d = sha3(a, b, 145, "foo");
|
d = keccak256(a, b, 145, "foo");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
@ -3174,7 +3174,7 @@ BOOST_AUTO_TEST_CASE(sha3_multiple_arguments_with_string_literals)
|
|||||||
bytes{0x66, 0x6f, 0x6f})));
|
bytes{0x66, 0x6f, 0x6f})));
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(sha3_with_bytes)
|
BOOST_AUTO_TEST_CASE(keccak256_with_bytes)
|
||||||
{
|
{
|
||||||
char const* sourceCode = R"(
|
char const* sourceCode = R"(
|
||||||
contract c {
|
contract c {
|
||||||
@ -3185,7 +3185,7 @@ BOOST_AUTO_TEST_CASE(sha3_with_bytes)
|
|||||||
data[0] = "f";
|
data[0] = "f";
|
||||||
data[1] = "o";
|
data[1] = "o";
|
||||||
data[2] = "o";
|
data[2] = "o";
|
||||||
return sha3(data) == sha3("foo");
|
return keccak256(data) == keccak256("foo");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
@ -3193,7 +3193,7 @@ BOOST_AUTO_TEST_CASE(sha3_with_bytes)
|
|||||||
BOOST_CHECK(callContractFunction("foo()") == encodeArgs(true));
|
BOOST_CHECK(callContractFunction("foo()") == encodeArgs(true));
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(iterated_sha3_with_bytes)
|
BOOST_AUTO_TEST_CASE(iterated_keccak256_with_bytes)
|
||||||
{
|
{
|
||||||
char const* sourceCode = R"(
|
char const* sourceCode = R"(
|
||||||
contract c {
|
contract c {
|
||||||
@ -3204,7 +3204,7 @@ BOOST_AUTO_TEST_CASE(iterated_sha3_with_bytes)
|
|||||||
data[0] = "x";
|
data[0] = "x";
|
||||||
data[1] = "y";
|
data[1] = "y";
|
||||||
data[2] = "z";
|
data[2] = "z";
|
||||||
return sha3("b", sha3(data), "a");
|
return keccak256("b", keccak256(data), "a");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
@ -3214,13 +3214,13 @@ BOOST_AUTO_TEST_CASE(iterated_sha3_with_bytes)
|
|||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(keccak256_multiple_arguments)
|
BOOST_AUTO_TEST_CASE(sha3_multiple_arguments)
|
||||||
{
|
{
|
||||||
char const* sourceCode = R"(
|
char const* sourceCode = R"(
|
||||||
contract c {
|
contract c {
|
||||||
function foo(uint a, uint b, uint c) returns (bytes32 d)
|
function foo(uint a, uint b, uint c) returns (bytes32 d)
|
||||||
{
|
{
|
||||||
d = keccak256(a, b, c);
|
d = sha3(a, b, c);
|
||||||
}
|
}
|
||||||
})";
|
})";
|
||||||
compileAndRun(sourceCode);
|
compileAndRun(sourceCode);
|
||||||
@ -3245,7 +3245,7 @@ BOOST_AUTO_TEST_CASE(generic_call)
|
|||||||
function sender() payable {}
|
function sender() payable {}
|
||||||
function doSend(address rec) returns (uint d)
|
function doSend(address rec) returns (uint d)
|
||||||
{
|
{
|
||||||
bytes4 signature = bytes4(bytes32(sha3("receive(uint256)")));
|
bytes4 signature = bytes4(bytes32(keccak256("receive(uint256)")));
|
||||||
rec.call.value(2)(signature, 23);
|
rec.call.value(2)(signature, 23);
|
||||||
return receiver(rec).received();
|
return receiver(rec).received();
|
||||||
}
|
}
|
||||||
@ -3270,7 +3270,7 @@ BOOST_AUTO_TEST_CASE(generic_callcode)
|
|||||||
function Sender() payable { }
|
function Sender() payable { }
|
||||||
function doSend(address rec) returns (uint d)
|
function doSend(address rec) returns (uint d)
|
||||||
{
|
{
|
||||||
bytes4 signature = bytes4(bytes32(sha3("receive(uint256)")));
|
bytes4 signature = bytes4(bytes32(keccak256("receive(uint256)")));
|
||||||
rec.callcode.value(2)(signature, 23);
|
rec.callcode.value(2)(signature, 23);
|
||||||
return Receiver(rec).received();
|
return Receiver(rec).received();
|
||||||
}
|
}
|
||||||
@ -3307,7 +3307,7 @@ BOOST_AUTO_TEST_CASE(generic_delegatecall)
|
|||||||
function Sender() payable {}
|
function Sender() payable {}
|
||||||
function doSend(address rec) payable
|
function doSend(address rec) payable
|
||||||
{
|
{
|
||||||
bytes4 signature = bytes4(bytes32(sha3("receive(uint256)")));
|
bytes4 signature = bytes4(bytes32(keccak256("receive(uint256)")));
|
||||||
if (rec.delegatecall(signature, 23)) {}
|
if (rec.delegatecall(signature, 23)) {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -3372,7 +3372,7 @@ BOOST_AUTO_TEST_CASE(bytes_from_calldata_to_memory)
|
|||||||
char const* sourceCode = R"(
|
char const* sourceCode = R"(
|
||||||
contract C {
|
contract C {
|
||||||
function f() returns (bytes32) {
|
function f() returns (bytes32) {
|
||||||
return sha3("abc", msg.data);
|
return keccak256("abc", msg.data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
@ -5294,7 +5294,7 @@ BOOST_AUTO_TEST_CASE(reusing_memory)
|
|||||||
mapping(uint => uint) map;
|
mapping(uint => uint) map;
|
||||||
function f(uint x) returns (uint) {
|
function f(uint x) returns (uint) {
|
||||||
map[x] = x;
|
map[x] = x;
|
||||||
return (new Helper(uint(sha3(this.g(map[x]))))).flag();
|
return (new Helper(uint(keccak256(this.g(map[x]))))).flag();
|
||||||
}
|
}
|
||||||
function g(uint a) returns (uint)
|
function g(uint a) returns (uint)
|
||||||
{
|
{
|
||||||
|
@ -2933,12 +2933,12 @@ BOOST_AUTO_TEST_CASE(non_initialized_references)
|
|||||||
CHECK_WARNING(text, "Uninitialized storage pointer");
|
CHECK_WARNING(text, "Uninitialized storage pointer");
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(sha3_with_large_integer_constant)
|
BOOST_AUTO_TEST_CASE(keccak256_with_large_integer_constant)
|
||||||
{
|
{
|
||||||
char const* text = R"(
|
char const* text = R"(
|
||||||
contract c
|
contract c
|
||||||
{
|
{
|
||||||
function f() { sha3(2**500); }
|
function f() { keccak256(2**500); }
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
CHECK_ERROR(text, TypeError, "");
|
CHECK_ERROR(text, TypeError, "");
|
||||||
@ -5400,7 +5400,7 @@ BOOST_AUTO_TEST_CASE(cyclic_dependency_for_constants)
|
|||||||
contract C {
|
contract C {
|
||||||
uint constant a = b * c;
|
uint constant a = b * c;
|
||||||
uint constant b = 7;
|
uint constant b = 7;
|
||||||
uint constant c = b + uint(sha3(d));
|
uint constant c = b + uint(keccak256(d));
|
||||||
uint constant d = 2 + a;
|
uint constant d = 2 + a;
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
@ -5409,7 +5409,7 @@ BOOST_AUTO_TEST_CASE(cyclic_dependency_for_constants)
|
|||||||
contract C {
|
contract C {
|
||||||
uint constant a = b * c;
|
uint constant a = b * c;
|
||||||
uint constant b = 7;
|
uint constant b = 7;
|
||||||
uint constant c = 4 + uint(sha3(d));
|
uint constant c = 4 + uint(keccak256(d));
|
||||||
uint constant d = 2 + b;
|
uint constant d = 2 + b;
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
|
@ -322,18 +322,18 @@ BOOST_AUTO_TEST_CASE(storage_write_in_loops)
|
|||||||
// Information in joining branches is not retained anymore.
|
// Information in joining branches is not retained anymore.
|
||||||
BOOST_AUTO_TEST_CASE(retain_information_in_branches)
|
BOOST_AUTO_TEST_CASE(retain_information_in_branches)
|
||||||
{
|
{
|
||||||
// This tests that the optimizer knows that we already have "z == sha3(y)" inside both branches.
|
// This tests that the optimizer knows that we already have "z == keccak256(y)" inside both branches.
|
||||||
char const* sourceCode = R"(
|
char const* sourceCode = R"(
|
||||||
contract c {
|
contract c {
|
||||||
bytes32 d;
|
bytes32 d;
|
||||||
uint a;
|
uint a;
|
||||||
function f(uint x, bytes32 y) returns (uint r_a, bytes32 r_d) {
|
function f(uint x, bytes32 y) returns (uint r_a, bytes32 r_d) {
|
||||||
bytes32 z = sha3(y);
|
bytes32 z = keccak256(y);
|
||||||
if (x > 8) {
|
if (x > 8) {
|
||||||
z = sha3(y);
|
z = keccak256(y);
|
||||||
a = x;
|
a = x;
|
||||||
} else {
|
} else {
|
||||||
z = sha3(y);
|
z = keccak256(y);
|
||||||
a = x;
|
a = x;
|
||||||
}
|
}
|
||||||
r_a = a;
|
r_a = a;
|
||||||
@ -358,7 +358,7 @@ BOOST_AUTO_TEST_CASE(retain_information_in_branches)
|
|||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(store_tags_as_unions)
|
BOOST_AUTO_TEST_CASE(store_tags_as_unions)
|
||||||
{
|
{
|
||||||
// This calls the same function from two sources and both calls have a certain sha3 on
|
// This calls the same function from two sources and both calls have a certain Keccak-256 on
|
||||||
// the stack at the same position.
|
// the stack at the same position.
|
||||||
// Without storing tags as unions, the return from the shared function would not know where to
|
// Without storing tags as unions, the return from the shared function would not know where to
|
||||||
// jump and thus all jumpdests are forced to clear their state and we do not know about the
|
// jump and thus all jumpdests are forced to clear their state and we do not know about the
|
||||||
@ -370,19 +370,19 @@ BOOST_AUTO_TEST_CASE(store_tags_as_unions)
|
|||||||
contract test {
|
contract test {
|
||||||
bytes32 data;
|
bytes32 data;
|
||||||
function f(uint x, bytes32 y) external returns (uint r_a, bytes32 r_d) {
|
function f(uint x, bytes32 y) external returns (uint r_a, bytes32 r_d) {
|
||||||
r_d = sha3(y);
|
r_d = keccak256(y);
|
||||||
shared(y);
|
shared(y);
|
||||||
r_d = sha3(y);
|
r_d = keccak256(y);
|
||||||
r_a = 5;
|
r_a = 5;
|
||||||
}
|
}
|
||||||
function g(uint x, bytes32 y) external returns (uint r_a, bytes32 r_d) {
|
function g(uint x, bytes32 y) external returns (uint r_a, bytes32 r_d) {
|
||||||
r_d = sha3(y);
|
r_d = keccak256(y);
|
||||||
shared(y);
|
shared(y);
|
||||||
r_d = bytes32(uint(sha3(y)) + 2);
|
r_d = bytes32(uint(keccak256(y)) + 2);
|
||||||
r_a = 7;
|
r_a = 7;
|
||||||
}
|
}
|
||||||
function shared(bytes32 y) internal {
|
function shared(bytes32 y) internal {
|
||||||
data = sha3(y);
|
data = keccak256(y);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
@ -401,8 +401,8 @@ BOOST_AUTO_TEST_CASE(store_tags_as_unions)
|
|||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(incorrect_storage_access_bug)
|
BOOST_AUTO_TEST_CASE(incorrect_storage_access_bug)
|
||||||
{
|
{
|
||||||
// This bug appeared because a sha3 operation with too low sequence number was used,
|
// This bug appeared because a Keccak-256 operation with too low sequence number was used,
|
||||||
// resulting in memory not being rewritten before the sha3. The fix was to
|
// resulting in memory not being rewritten before the Keccak-256. The fix was to
|
||||||
// take the max of the min sequence numbers when merging the states.
|
// take the max of the min sequence numbers when merging the states.
|
||||||
char const* sourceCode = R"(
|
char const* sourceCode = R"(
|
||||||
contract C
|
contract C
|
||||||
@ -821,7 +821,7 @@ BOOST_AUTO_TEST_CASE(cse_jumpi_jump)
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(cse_empty_sha3)
|
BOOST_AUTO_TEST_CASE(cse_empty_keccak256)
|
||||||
{
|
{
|
||||||
AssemblyItems input{
|
AssemblyItems input{
|
||||||
u256(0),
|
u256(0),
|
||||||
@ -833,7 +833,7 @@ BOOST_AUTO_TEST_CASE(cse_empty_sha3)
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(cse_partial_sha3)
|
BOOST_AUTO_TEST_CASE(cse_partial_keccak256)
|
||||||
{
|
{
|
||||||
AssemblyItems input{
|
AssemblyItems input{
|
||||||
u256(0xabcd) << (256 - 16),
|
u256(0xabcd) << (256 - 16),
|
||||||
@ -851,9 +851,9 @@ BOOST_AUTO_TEST_CASE(cse_partial_sha3)
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(cse_sha3_twice_same_location)
|
BOOST_AUTO_TEST_CASE(cse_keccak256_twice_same_location)
|
||||||
{
|
{
|
||||||
// sha3 twice from same dynamic location
|
// Keccak-256 twice from same dynamic location
|
||||||
AssemblyItems input{
|
AssemblyItems input{
|
||||||
Instruction::DUP2,
|
Instruction::DUP2,
|
||||||
Instruction::DUP1,
|
Instruction::DUP1,
|
||||||
@ -876,9 +876,9 @@ BOOST_AUTO_TEST_CASE(cse_sha3_twice_same_location)
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(cse_sha3_twice_same_content)
|
BOOST_AUTO_TEST_CASE(cse_keccak256_twice_same_content)
|
||||||
{
|
{
|
||||||
// sha3 twice from different dynamic location but with same content
|
// Keccak-256 twice from different dynamic location but with same content
|
||||||
AssemblyItems input{
|
AssemblyItems input{
|
||||||
Instruction::DUP1,
|
Instruction::DUP1,
|
||||||
u256(0x80),
|
u256(0x80),
|
||||||
@ -909,10 +909,10 @@ BOOST_AUTO_TEST_CASE(cse_sha3_twice_same_content)
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(cse_sha3_twice_same_content_dynamic_store_in_between)
|
BOOST_AUTO_TEST_CASE(cse_keccak256_twice_same_content_dynamic_store_in_between)
|
||||||
{
|
{
|
||||||
// sha3 twice from different dynamic location but with same content,
|
// Keccak-256 twice from different dynamic location but with same content,
|
||||||
// dynamic mstore in between, which forces us to re-calculate the sha3
|
// dynamic mstore in between, which forces us to re-calculate the hash
|
||||||
AssemblyItems input{
|
AssemblyItems input{
|
||||||
u256(0x80),
|
u256(0x80),
|
||||||
Instruction::DUP2,
|
Instruction::DUP2,
|
||||||
@ -937,10 +937,10 @@ BOOST_AUTO_TEST_CASE(cse_sha3_twice_same_content_dynamic_store_in_between)
|
|||||||
checkCSE(input, input);
|
checkCSE(input, input);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(cse_sha3_twice_same_content_noninterfering_store_in_between)
|
BOOST_AUTO_TEST_CASE(cse_keccak256_twice_same_content_noninterfering_store_in_between)
|
||||||
{
|
{
|
||||||
// sha3 twice from different dynamic location but with same content,
|
// Keccak-256 twice from different dynamic location but with same content,
|
||||||
// dynamic mstore in between, but does not force us to re-calculate the sha3
|
// dynamic mstore in between, but does not force us to re-calculate the hash
|
||||||
AssemblyItems input{
|
AssemblyItems input{
|
||||||
u256(0x80),
|
u256(0x80),
|
||||||
Instruction::DUP2,
|
Instruction::DUP2,
|
||||||
@ -1296,7 +1296,7 @@ BOOST_AUTO_TEST_CASE(constant_optimization_early_exit)
|
|||||||
// Store and hash
|
// Store and hash
|
||||||
assembly {
|
assembly {
|
||||||
mstore(32, x)
|
mstore(32, x)
|
||||||
ret := sha3(0, 40)
|
ret := keccak256(0, 40)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user