7c335e8764
* misc: bump license header to 2019 * misc: remove_duplicate_empty_lines.sh * misc: run license header script * commit cargo lock
82 lines
3.0 KiB
Rust
82 lines
3.0 KiB
Rust
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity Ethereum.
|
|
|
|
// Parity Ethereum 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 Ethereum 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 Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use super::types::ServerKeyId;
|
|
|
|
pub use super::traits::NodeKeyPair;
|
|
pub use super::types::{Error, NodeId, Requester, EncryptedDocumentKeyShadow};
|
|
pub use super::acl_storage::AclStorage;
|
|
pub use super::key_storage::{KeyStorage, DocumentKeyShare, DocumentKeyShareVersion};
|
|
pub use super::key_server_set::{is_migration_required, KeyServerSet, KeyServerSetSnapshot, KeyServerSetMigration};
|
|
pub use super::serialization::{SerializableSignature, SerializableH256, SerializableSecret, SerializablePublic,
|
|
SerializableRequester, SerializableMessageHash, SerializableAddress};
|
|
pub use self::cluster::{ClusterCore, ClusterConfiguration, ClusterClient};
|
|
pub use self::cluster_sessions::{ClusterSession, ClusterSessionsListener};
|
|
#[cfg(test)]
|
|
pub use self::cluster::tests::DummyClusterClient;
|
|
|
|
#[cfg(test)]
|
|
pub use super::node_key_pair::PlainNodeKeyPair;
|
|
#[cfg(test)]
|
|
pub use super::key_storage::tests::DummyKeyStorage;
|
|
pub use super::acl_storage::DummyAclStorage;
|
|
#[cfg(test)]
|
|
pub use super::key_server_set::tests::MapKeyServerSet;
|
|
|
|
pub type SessionId = ServerKeyId;
|
|
|
|
/// Session metadata.
|
|
#[derive(Debug, Clone)]
|
|
pub struct SessionMeta {
|
|
/// Key id.
|
|
pub id: SessionId,
|
|
/// Id of node, which has started this session.
|
|
pub master_node_id: NodeId,
|
|
/// Id of node, on which this session is running.
|
|
pub self_node_id: NodeId,
|
|
/// Session threshold.
|
|
pub threshold: usize,
|
|
/// Count of all configured key server nodes (valid at session start time).
|
|
pub configured_nodes_count: usize,
|
|
/// Count of all connected key server nodes (valid at session start time).
|
|
pub connected_nodes_count: usize,
|
|
}
|
|
|
|
mod admin_sessions;
|
|
mod client_sessions;
|
|
|
|
pub use self::admin_sessions::key_version_negotiation_session;
|
|
pub use self::admin_sessions::servers_set_change_session;
|
|
pub use self::admin_sessions::share_add_session;
|
|
pub use self::admin_sessions::share_change_session;
|
|
|
|
pub use self::client_sessions::decryption_session;
|
|
pub use self::client_sessions::encryption_session;
|
|
pub use self::client_sessions::generation_session;
|
|
pub use self::client_sessions::signing_session_ecdsa;
|
|
pub use self::client_sessions::signing_session_schnorr;
|
|
|
|
mod cluster;
|
|
mod cluster_sessions;
|
|
mod cluster_sessions_creator;
|
|
mod connection_trigger;
|
|
mod connection_trigger_with_migration;
|
|
mod io;
|
|
mod jobs;
|
|
pub mod math;
|
|
mod message;
|
|
mod net;
|