Kagome
Polkadot Runtime Engine in C++17
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
ed25519_types.cpp
Go to the documentation of this file.
1
6
#include "
ed25519_types.hpp
"
7
8
namespace
kagome::crypto
{
9
bool
Ed25519Keypair::operator==
(
const
Ed25519Keypair
&other)
const
{
10
return
secret_key
== other.
secret_key
&&
public_key
== other.
public_key
;
11
}
12
13
bool
Ed25519Keypair::operator!=
(
const
Ed25519Keypair
&other)
const
{
14
return
!(*
this
== other);
15
}
16
}
// namespace kagome::crypto
kagome::crypto::Ed25519Keypair::operator==
bool operator==(const Ed25519Keypair &other) const
Definition:
ed25519_types.cpp:9
kagome::crypto::Ed25519Keypair::operator!=
bool operator!=(const Ed25519Keypair &other) const
Definition:
ed25519_types.cpp:13
kagome::crypto::Ed25519Keypair::secret_key
Ed25519PrivateKey secret_key
Definition:
ed25519_types.hpp:47
ed25519_types.hpp
kagome::crypto::Ed25519Keypair
Definition:
ed25519_types.hpp:46
kagome::crypto::Ed25519Keypair::public_key
Ed25519PublicKey public_key
Definition:
ed25519_types.hpp:48
kagome::crypto
Definition:
author_api_impl.hpp:31
core
crypto
ed25519_types.cpp
Generated by
1.8.11