mirror of
https://github.com/zkemail/zk-email-verify.git
synced 2026-01-08 05:04:04 -05:00
10 lines
224 B
Solidity
10 lines
224 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.0;
|
|
|
|
interface IDKIMRegistry {
|
|
function isDKIMPublicKeyHashValid(
|
|
string memory domainName,
|
|
bytes32 publicKeyHash
|
|
) external view returns (bool);
|
|
}
|