99075ad22a
* whisper skeleton * basic message store * rallying and message logic * pass host info to network protocol handlers * choose who starts rally based on node key * module reshuffling * mining messages * prune messages by low PoW until below size target * associated error type for ethkey generators and `OsRng` generator * beginnings of RPC * generic message handler for whisper * reshuffle code order * standard payload encoding and decoding * basic crypto * minor restructuring of net code * implement shh_post * merge? * implement filters * rand trait for hash types * filter RPCs for whisper * symmetric encryption of payload * pub-sub * filter tests * use only secure random IDs * attach arbitrary protocols to network * basic integration of whisper into Parity * eagerly prune low PoW entries * broadcast messages with salted topics * node info RPC * fix import * fix leading zeros calculation * address minor grumbles
71 lines
1.9 KiB
Rust
71 lines
1.9 KiB
Rust
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity.
|
|
|
|
// Parity 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.
|
|
|
|
// Parity 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 Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
extern crate rand;
|
|
extern crate tiny_keccak;
|
|
extern crate secp256k1;
|
|
extern crate rustc_hex;
|
|
extern crate ethcore_bigint as bigint;
|
|
extern crate crypto as rcrypto;
|
|
extern crate byteorder;
|
|
|
|
#[macro_use]
|
|
extern crate lazy_static;
|
|
|
|
mod brain;
|
|
mod error;
|
|
mod keypair;
|
|
mod keccak;
|
|
mod prefix;
|
|
mod random;
|
|
mod signature;
|
|
mod secret;
|
|
mod extended;
|
|
|
|
pub mod math;
|
|
|
|
pub use self::brain::Brain;
|
|
pub use self::error::Error;
|
|
pub use self::keypair::{KeyPair, public_to_address};
|
|
pub use self::math::public_is_valid;
|
|
pub use self::prefix::Prefix;
|
|
pub use self::random::Random;
|
|
pub use self::signature::{sign, verify_public, verify_address, recover, Signature};
|
|
pub use self::secret::Secret;
|
|
pub use self::extended::{ExtendedPublic, ExtendedSecret, ExtendedKeyPair, DerivationError, Derivation};
|
|
|
|
use bigint::hash::{H160, H256, H512};
|
|
|
|
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.
|
|
fn generate(self) -> Result<KeyPair, Self::Error>;
|
|
}
|
|
|
|
pub type Address = H160;
|
|
pub type Message = H256;
|
|
pub type Public = H512;
|