Annotate stateless cryptography contracts (#5756)
This commit is contained in:
@ -29,6 +29,8 @@ import {ERC1155Holder} from "../token/ERC1155/utils/ERC1155Holder.sol";
|
||||
import {ERC1967Utils} from "../proxy/ERC1967/ERC1967Utils.sol";
|
||||
import {ERC4337Utils} from "../account/utils/draft-ERC4337Utils.sol";
|
||||
import {ERC7579Utils} from "../account/utils/draft-ERC7579Utils.sol";
|
||||
import {ERC7913P256Verifier} from "../utils/cryptography/verifiers/ERC7913P256Verifier.sol";
|
||||
import {ERC7913RSAVerifier} from "../utils/cryptography/verifiers/ERC7913RSAVerifier.sol";
|
||||
import {Heap} from "../utils/structs/Heap.sol";
|
||||
import {InteroperableAddress} from "../utils/draft-InteroperableAddress.sol";
|
||||
import {Math} from "../utils/math/Math.sol";
|
||||
|
||||
@ -7,6 +7,8 @@ import {IERC7913SignatureVerifier} from "../../../interfaces/IERC7913.sol";
|
||||
|
||||
/**
|
||||
* @dev ERC-7913 signature verifier that support P256 (secp256r1) keys.
|
||||
*
|
||||
* @custom:stateless
|
||||
*/
|
||||
contract ERC7913P256Verifier is IERC7913SignatureVerifier {
|
||||
/// @inheritdoc IERC7913SignatureVerifier
|
||||
|
||||
@ -7,6 +7,8 @@ import {IERC7913SignatureVerifier} from "../../../interfaces/IERC7913.sol";
|
||||
|
||||
/**
|
||||
* @dev ERC-7913 signature verifier that support RSA keys.
|
||||
*
|
||||
* @custom:stateless
|
||||
*/
|
||||
contract ERC7913RSAVerifier is IERC7913SignatureVerifier {
|
||||
/// @inheritdoc IERC7913SignatureVerifier
|
||||
|
||||
Reference in New Issue
Block a user