Skip to content

Commit

Permalink
modify crypto (#665)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyjseagull authored Aug 10, 2022
1 parent 85b4e3a commit ed18cdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/contract/solidity/Crypto.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ abstract contract Crypto
{
function sm3(bytes memory data) public view returns(bytes32){}
function keccak256Hash(bytes memory data) public view returns(bytes32){}
function sm2Verify(bytes memory message, bytes memory sign) public view returns(bool, address){}
function sm2Verify(bytes32 message, bytes memory publicKey, bytes32 r, bytes32 s) public view returns(bool, address){}
function curve25519VRFVerify(bytes memory message, bytes memory publicKey, bytes memory proof) public view returns(bool, uint256){}
}

0 comments on commit ed18cdb

Please sign in to comment.