2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2017-01-20 13:25:17 +01:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2017-01-20 13:25:17 +01:00
|
|
|
// 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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2017-01-20 13:25:17 +01:00
|
|
|
// 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2017-01-20 13:25:17 +01:00
|
|
|
|
|
|
|
//! A signer used by Engines which need to sign messages.
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
use ethereum_types::{Address, H256};
|
2019-02-07 14:34:24 +01:00
|
|
|
use ethkey::{self, Signature};
|
2017-01-20 13:25:17 +01:00
|
|
|
|
|
|
|
/// Everything that an Engine needs to sign messages.
|
2019-02-07 14:34:24 +01:00
|
|
|
pub trait EngineSigner: Send + Sync {
|
2020-08-05 06:08:03 +02:00
|
|
|
/// Sign a consensus message hash.
|
|
|
|
fn sign(&self, hash: H256) -> Result<Signature, ethkey::Error>;
|
2019-02-07 14:34:24 +01:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
/// Signing address
|
|
|
|
fn address(&self) -> Address;
|
2017-01-20 13:25:17 +01:00
|
|
|
}
|
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
/// Creates a new `EngineSigner` from given key pair.
|
|
|
|
pub fn from_keypair(keypair: ethkey::KeyPair) -> Box<EngineSigner> {
|
2020-08-05 06:08:03 +02:00
|
|
|
Box::new(Signer(keypair))
|
2017-01-20 13:25:17 +01:00
|
|
|
}
|
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
struct Signer(ethkey::KeyPair);
|
2017-01-20 13:25:17 +01:00
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
impl EngineSigner for Signer {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn sign(&self, hash: H256) -> Result<Signature, ethkey::Error> {
|
|
|
|
ethkey::sign(self.0.secret(), &hash)
|
|
|
|
}
|
2017-01-20 13:25:17 +01:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
fn address(&self) -> Address {
|
|
|
|
self.0.address()
|
|
|
|
}
|
2019-02-07 14:34:24 +01:00
|
|
|
}
|
2017-01-20 13:25:17 +01:00
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test_signer {
|
2020-08-05 06:08:03 +02:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
use accounts::{self, AccountProvider, SignError};
|
|
|
|
use ethkey::Password;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
impl EngineSigner for (Arc<AccountProvider>, Address, Password) {
|
|
|
|
fn sign(&self, hash: H256) -> Result<Signature, ethkey::Error> {
|
|
|
|
match self.0.sign(self.1, Some(self.2.clone()), hash) {
|
|
|
|
Err(SignError::NotUnlocked) => unreachable!(),
|
|
|
|
Err(SignError::NotFound) => Err(ethkey::Error::InvalidAddress),
|
|
|
|
Err(SignError::Hardware(err)) => {
|
|
|
|
warn!("Error using hardware wallet for engine: {:?}", err);
|
|
|
|
Err(ethkey::Error::InvalidSecret)
|
|
|
|
}
|
|
|
|
Err(SignError::SStore(accounts::Error::EthKey(err))) => Err(err),
|
|
|
|
Err(SignError::SStore(accounts::Error::EthKeyCrypto(err))) => {
|
|
|
|
warn!("Low level crypto error: {:?}", err);
|
|
|
|
Err(ethkey::Error::InvalidSecret)
|
|
|
|
}
|
|
|
|
Err(SignError::SStore(err)) => {
|
|
|
|
warn!("Error signing for engine: {:?}", err);
|
|
|
|
Err(ethkey::Error::InvalidSignature)
|
|
|
|
}
|
|
|
|
Ok(ok) => Ok(ok),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn address(&self) -> Address {
|
|
|
|
self.1
|
|
|
|
}
|
|
|
|
}
|
2017-01-20 13:25:17 +01:00
|
|
|
}
|