I am trying to create a hash (sha256) of an array but I don't understand how it works.
for example :
pragma solidity 0.4.11;
contract test { bytes32 public hash; bytes32 public hash2; bytes32 public hash3; bytes32 public hash4;
function test () {
address[2] memory _add;
_add[0] = 0xca35b7d915458ef540ade6068dfe2f44e8fa733c;
_add[1] = 0xca35b7d915458ef540ade6068dfe2f44e8fa733c;
hash = sha256(_add[0],_add[1]);
hash2 = sha256(_add);
_add[0] = 0;
_add[1] = 0;
hash3 = sha256(_add[0],_add[1]);
hash4 = sha256(_add);
}
hash is different from hash2 and hash3 is different from hash4... why?
The "tightly packed" data should result in the same hash ... no?
Best,
Actually, the issue was that all the elements of the array are converted to Bytes32 (adding a padding of zeros)...
So basically :
data before hash = ca35b7d915458ef540ade6068dfe2f44e8fa733cca35b7d915458ef540ade6068dfe2f44e8fa733c
data before hash2 = 000000000000000000000000ca35b7d915458ef540ade6068dfe2f44e8fa733c000000000000000000000000ca35b7d915458ef540ade6068dfe2f44e8fa733c
data before hash3 = 00000000000000000000000000000000000000000000000000000000000000000000000000000000
data before hash4 = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000