Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com> Co-authored-by: Francisco Giordano <frangio.1@gmail.com>
37 lines
887 B
Solidity
37 lines
887 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "../utils/cryptography/ECDSA.sol";
|
|
|
|
contract ECDSAMock {
|
|
using ECDSA for bytes32;
|
|
|
|
function recover(bytes32 hash, bytes memory signature) public pure returns (address) {
|
|
return hash.recover(signature);
|
|
}
|
|
|
|
// solhint-disable-next-line func-name-mixedcase
|
|
function recover_v_r_s(
|
|
bytes32 hash,
|
|
uint8 v,
|
|
bytes32 r,
|
|
bytes32 s
|
|
) public pure returns (address) {
|
|
return hash.recover(v, r, s);
|
|
}
|
|
|
|
// solhint-disable-next-line func-name-mixedcase
|
|
function recover_r_vs(
|
|
bytes32 hash,
|
|
bytes32 r,
|
|
bytes32 vs
|
|
) public pure returns (address) {
|
|
return hash.recover(r, vs);
|
|
}
|
|
|
|
function toEthSignedMessageHash(bytes32 hash) public pure returns (bytes32) {
|
|
return hash.toEthSignedMessageHash();
|
|
}
|
|
}
|