solidity/test/libsolidity/smtCheckerTests/crypto/crypto_functions_not_same.sol
2021-04-08 21:03:39 +02:00

16 lines
339 B
Solidity

contract C {
function f(bytes memory data) public pure {
bytes32 k = keccak256(data);
fi(data, k);
}
function fi(bytes memory data, bytes32 k) internal pure {
bytes32 h = sha256(data);
assert(h == k);
}
}
// ====
// SMTEngine: all
// SMTIgnoreCex: yes
// ----
// Warning 6328: (196-210): CHC: Assertion violation happens here.