You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
428 B

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "forge-std/Test.sol";
import {Keccak256} from "../src/keccak256.sol";
contract Keccak256Test is Test {
Keccak256 keccak256hash;
function testKeccak256() public {
// assertEq(keccak256hash.hash("asdf"), 7853200120776062878684798364095072458815029376092732009249414926327459813530);
keccak256(abi.encodePacked(uint256(1)));
}
}