Kagome
Polkadot Runtime Engine in C++17
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
Kagome
Consensus
core
Development guide
Guide for `outcome::result<T>`
Rules
Terms
Tooling
Overview
Your first Kagome chain
Runing Kagome in docker container
Start private Kagome network
Namespaces
Classes
Files
File List
core
api
application
assets
authority_discovery
authorship
blockchain
clock
common
consensus
containers
crypto
bip39
blake2
crypto_store
ecdsa
ed25519
hasher
keccak
pbkdf2
random_generator
secp256k1
sha
sr25519
twox
vrf
crypto_store.hpp
ecdsa_provider.hpp
ecdsa_types.cpp
ecdsa_types.hpp
ed25519_provider.hpp
ed25519_types.cpp
ed25519_types.hpp
hasher.hpp
random_generator.hpp
secp256k1_provider.hpp
secp256k1_types.hpp
sr25519_provider.hpp
sr25519_types.cpp
sr25519_types.hpp
vrf_provider.hpp
filesystem
host_api
injector
log
macro
metrics
network
offchain
outcome
parachain
primitives
runtime
scale
storage
subscription
telemetry
transaction_pool
utils
docs
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
ecdsa_types.cpp
Go to the documentation of this file.
1
6
#include "
crypto/ecdsa_types.hpp
"
7
8
namespace
kagome::crypto
{
9
bool
EcdsaKeypair::operator==
(
const
EcdsaKeypair
&other)
const
{
10
return
secret_key
== other.
secret_key
&&
public_key
== other.
public_key
;
11
}
12
13
bool
EcdsaKeypair::operator!=
(
const
EcdsaKeypair
&other)
const
{
14
return
!(*
this
== other);
15
}
16
}
// namespace kagome::crypto
kagome::crypto::EcdsaKeypair::public_key
EcdsaPublicKey public_key
Definition:
ecdsa_types.hpp:37
kagome::crypto::EcdsaKeypair::operator!=
bool operator!=(const EcdsaKeypair &other) const
Definition:
ecdsa_types.cpp:13
ecdsa_types.hpp
kagome::crypto::EcdsaKeypair::secret_key
EcdsaPrivateKey secret_key
Definition:
ecdsa_types.hpp:36
kagome::crypto::EcdsaKeypair
Definition:
ecdsa_types.hpp:35
kagome::crypto::EcdsaKeypair::operator==
bool operator==(const EcdsaKeypair &other) const
Definition:
ecdsa_types.cpp:9
kagome::crypto
Definition:
author_api_impl.hpp:31
core
crypto
ecdsa_types.cpp
Generated by
1.8.11