Kagome
Polkadot Runtime Engine in C++17
|
Namespaces | |
constants | |
secp256k1_verify_error | |
Typedefs | |
using | Secp256k1VerifyError = uint8_t |
using | CompressedPublicKey = common::Blob< constants::kCompressedPublicKeySize > |
using | UncompressedPublicKey = common::Blob< constants::kUncompressedPublicKeySize > |
using | PublicKey = common::Blob< constants::kGeneralPublicKeySize > |
using | RSVSignature = common::Blob< constants::kCompactSignatureSize > |
using | MessageHash = common::Hash256 |
Copyright Soramitsu Co., Ltd. All Rights Reserved. SPDX-License-Identifier: Apache-2.0
using kagome::crypto::secp256k1::CompressedPublicKey = typedef common::Blob<constants::kCompressedPublicKeySize> |
compressed form of public key
Definition at line 29 of file secp256k1_types.hpp.
using kagome::crypto::secp256k1::MessageHash = typedef common::Hash256 |
32-byte sequence of bytes (presumably blake2s hash)
Definition at line 50 of file secp256k1_types.hpp.
truncated form of uncompressed public key
Definition at line 40 of file secp256k1_types.hpp.
using kagome::crypto::secp256k1::RSVSignature = typedef common::Blob<constants::kCompactSignatureSize> |
secp256k1 RSV-signature
Definition at line 45 of file secp256k1_types.hpp.
using kagome::crypto::secp256k1::Secp256k1VerifyError = typedef uint8_t |
Definition at line 19 of file secp256k1_types.hpp.
using kagome::crypto::secp256k1::UncompressedPublicKey = typedef common::Blob<constants::kUncompressedPublicKeySize> |
uncompressed form of public key
Definition at line 35 of file secp256k1_types.hpp.