2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2016-06-20 10:06:49 +02:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2016-06-20 10:06:49 +02: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.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is distributed in the hope that it will be useful,
|
2016-06-20 10:06:49 +02: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
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-06-20 10:06:49 +02:00
|
|
|
|
2017-12-01 09:40:07 +01:00
|
|
|
// #![warn(missing_docs)]
|
|
|
|
|
|
|
|
extern crate edit_distance;
|
2018-01-10 13:35:18 +01:00
|
|
|
extern crate ethereum_types;
|
2018-12-28 10:33:49 +01:00
|
|
|
extern crate memzero;
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
extern crate parity_crypto;
|
2017-12-01 09:40:07 +01:00
|
|
|
extern crate parity_wordlist;
|
2018-05-05 11:02:33 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate quick_error;
|
2016-06-20 00:10:34 +02:00
|
|
|
extern crate rand;
|
2017-07-06 11:26:14 +02:00
|
|
|
extern crate rustc_hex;
|
2017-12-01 09:40:07 +01:00
|
|
|
extern crate secp256k1;
|
2018-06-22 15:09:15 +02:00
|
|
|
extern crate serde;
|
2017-12-01 09:40:07 +01:00
|
|
|
extern crate tiny_keccak;
|
2016-06-20 00:10:34 +02:00
|
|
|
|
2017-07-14 20:40:28 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
2017-12-01 09:40:07 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
2018-06-22 15:09:15 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
2017-07-14 20:40:28 +02:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
mod brain;
|
2017-12-01 09:40:07 +01:00
|
|
|
mod brain_prefix;
|
2016-06-20 00:10:34 +02:00
|
|
|
mod error;
|
|
|
|
mod extended;
|
|
|
|
mod keccak;
|
2020-08-05 06:08:03 +02:00
|
|
|
mod keypair;
|
2018-06-22 15:09:15 +02:00
|
|
|
mod password;
|
2016-06-20 00:10:34 +02:00
|
|
|
mod prefix;
|
|
|
|
mod random;
|
2017-01-11 12:16:47 +01:00
|
|
|
mod secret;
|
2017-02-05 16:17:03 +01:00
|
|
|
mod signature;
|
2016-06-20 00:10:34 +02:00
|
|
|
|
2017-12-01 09:40:07 +01:00
|
|
|
pub mod brain_recover;
|
2018-05-05 11:02:33 +02:00
|
|
|
pub mod crypto;
|
2017-03-02 12:27:41 +01:00
|
|
|
pub mod math;
|
|
|
|
|
2017-12-01 09:40:07 +01:00
|
|
|
pub use self::{
|
2016-06-20 00:10:34 +02:00
|
|
|
brain::Brain,
|
2017-12-01 09:40:07 +01:00
|
|
|
brain_prefix::BrainPrefix,
|
2016-06-20 00:10:34 +02:00
|
|
|
error::Error,
|
2017-02-15 16:56:15 +01:00
|
|
|
extended::{Derivation, DerivationError, ExtendedKeyPair, ExtendedPublic, ExtendedSecret},
|
2016-06-20 10:02:02 +02:00
|
|
|
keypair::{public_to_address, KeyPair},
|
2017-02-15 16:56:15 +01:00
|
|
|
math::public_is_valid,
|
|
|
|
parity_wordlist::Error as WordlistError,
|
2018-06-22 15:09:15 +02:00
|
|
|
password::Password,
|
2016-06-20 00:10:34 +02:00
|
|
|
prefix::Prefix,
|
|
|
|
random::Random,
|
2017-02-15 16:56:15 +01:00
|
|
|
secret::Secret,
|
2016-06-20 10:02:02 +02:00
|
|
|
signature::{recover, sign, verify_address, verify_public, Signature},
|
2017-02-15 16:56:15 +01:00
|
|
|
};
|
2016-08-15 15:09:00 +02:00
|
|
|
|
2018-01-10 13:35:18 +01:00
|
|
|
use ethereum_types::H256;
|
|
|
|
|
|
|
|
pub use ethereum_types::{Address, Public};
|
|
|
|
pub type Message = H256;
|
2016-08-15 15:09:00 +02:00
|
|
|
|
2017-07-14 20:40:28 +02:00
|
|
|
lazy_static! {
|
|
|
|
pub static ref SECP256K1: secp256k1::Secp256k1 = secp256k1::Secp256k1::new();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Uninstantiatable error type for infallible generators.
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Void {}
|
|
|
|
|
|
|
|
/// Generates new keypair.
|
|
|
|
pub trait Generator {
|
|
|
|
type Error;
|
|
|
|
|
|
|
|
/// Should be called to generate new keypair.
|
2017-12-01 09:40:07 +01:00
|
|
|
fn generate(&mut self) -> Result<KeyPair, Self::Error>;
|
2017-07-14 20:40:28 +02:00
|
|
|
}
|