1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
// This file is part of Astar.
// Copyright (C) Stake Technologies Pte.Ltd.
// SPDX-License-Identifier: GPL-3.0-or-later
// Astar is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Astar is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Astar. If not, see <http://www.gnu.org/licenses/>.
#![cfg_attr(not(feature = "std"), no_std)]
use fp_evm::PrecompileHandle;
use sp_core::{ecdsa, ByteArray, ConstU32};
use sp_std::marker::PhantomData;
use sp_std::prelude::*;
use precompile_utils::prelude::*;
#[cfg(test)]
mod mock;
#[cfg(test)]
mod tests;
// ECDSA pub key bytes
type ECDSAPubKeyBytes = ConstU32<33>;
// ECDSA signature bytes
type ECDSASignatureBytes = ConstU32<65>;
/// A precompile to wrap substrate ecdsa functions.
pub struct SubstrateEcdsaPrecompile<Runtime>(PhantomData<Runtime>);
#[precompile_utils::precompile]
impl<Runtime: pallet_evm::Config> SubstrateEcdsaPrecompile<Runtime> {
#[precompile::public("verify(bytes,bytes,bytes)")]
#[precompile::view]
fn verify(
_handle: &mut impl PrecompileHandle,
public_bytes: BoundedBytes<ECDSAPubKeyBytes>,
signature_bytes: BoundedBytes<ECDSASignatureBytes>,
message: UnboundedBytes,
) -> EvmResult<bool> {
// Parse arguments
let public_bytes: Vec<u8> = public_bytes.into();
let signature_bytes: Vec<u8> = signature_bytes.into();
let message: Vec<u8> = message.into();
// Parse public key
let public = if let Ok(public) = ecdsa::Public::try_from(&public_bytes[..]) {
public
} else {
// Return `false` if public key length is wrong
return Ok(false);
};
// Parse signature
let signature_opt = ecdsa::Signature::from_slice(&signature_bytes[..]);
let signature = if let Ok(sig) = signature_opt {
sig
} else {
// Return `false` if signature length is wrong
return Ok(false);
};
log::trace!(
target: "substrate-ecdsa-precompile",
"Verify signature {:?} for public {:?} and message {:?}",
signature, public, message,
);
let is_confirmed = sp_io::crypto::ecdsa_verify(&signature, &message[..], &public);
log::trace!(
target: "substrate-ecdsa-precompile",
"Verified signature {:?} is {:?}",
signature, is_confirmed,
);
Ok(is_confirmed)
}
}