2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2016-06-20 10:06:49 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum 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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. 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;
|
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;
|
2018-01-10 13:35:18 +01:00
|
|
|
extern crate ethereum_types;
|
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;
|
2019-06-29 11:23:58 +02:00
|
|
|
extern crate zeroize;
|
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 keypair;
|
|
|
|
mod keccak;
|
2018-06-22 15:09:15 +02:00
|
|
|
mod password;
|
2016-06-20 00:10:34 +02:00
|
|
|
mod prefix;
|
|
|
|
mod random;
|
|
|
|
mod signature;
|
2017-01-11 12:16:47 +01:00
|
|
|
mod secret;
|
2017-02-05 16:17:03 +01:00
|
|
|
mod extended;
|
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::parity_wordlist::Error as WordlistError;
|
2016-06-20 00:10:34 +02:00
|
|
|
pub use self::brain::Brain;
|
2017-12-01 09:40:07 +01:00
|
|
|
pub use self::brain_prefix::BrainPrefix;
|
2016-06-20 00:10:34 +02:00
|
|
|
pub use self::error::Error;
|
2016-06-20 10:02:02 +02:00
|
|
|
pub use self::keypair::{KeyPair, public_to_address};
|
2017-07-14 20:40:28 +02:00
|
|
|
pub use self::math::public_is_valid;
|
2018-06-22 15:09:15 +02:00
|
|
|
pub use self::password::Password;
|
2016-06-20 00:10:34 +02:00
|
|
|
pub use self::prefix::Prefix;
|
|
|
|
pub use self::random::Random;
|
2016-06-20 10:02:02 +02:00
|
|
|
pub use self::signature::{sign, verify_public, verify_address, recover, Signature};
|
2017-01-11 12:16:47 +01:00
|
|
|
pub use self::secret::Secret;
|
2017-02-15 16:56:15 +01:00
|
|
|
pub use self::extended::{ExtendedPublic, ExtendedSecret, ExtendedKeyPair, DerivationError, Derivation};
|
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
|
|
|
}
|