Files
fhevm-solidity/lib/FhevmLib.sol
Joseph-André Turk a13cb753e9 feat: symbolic computation of fhe operations handles
chore: fixed typo
2024-08-23 18:22:31 +02:00

14 lines
325 B
Solidity

// SPDX-License-Identifier: BSD-3-Clause-Clear
pragma solidity ^0.8.24;
interface FhevmLib {
function verifyCiphertext(
bytes32 inputHandle,
address callerAddress,
address contractAddress,
bytes memory inputProof,
bytes1 inputType
) external pure returns (uint256 result);
}