![]() |
PRCYCoin
2.0.0.7rc1
P2P Digital Currency
|
#include "allocators.h"#include "serialize.h"#include "uint256.h"#include <stdexcept>#include <vector>Go to the source code of this file.
Classes | |
| class | CKey |
| An encapsulated private key. More... | |
| struct | CExtKey |
Typedefs | |
| typedef std::vector< unsigned char, secure_allocator< unsigned char > > | CPrivKey |
| secp256k1: const unsigned int PRIVATE_KEY_SIZE = 279; const unsigned int PUBLIC_KEY_SIZE = 65; const unsigned int SIGNATURE_SIZE = 72; More... | |
Functions | |
| bool | ECC_InitSanityCheck (void) |
| Check that required EC support is available at runtime. More... | |
| typedef std::vector<unsigned char, secure_allocator<unsigned char> > CPrivKey |
secp256k1: const unsigned int PRIVATE_KEY_SIZE = 279; const unsigned int PUBLIC_KEY_SIZE = 65; const unsigned int SIGNATURE_SIZE = 72;
see www.keylength.com script supports up to 75 for single byte push secure_allocator is defined in allocators.h CPrivKey is a serialized private key, with all parameters included (279 bytes)
1.8.17