#include "serialize.h"
#include "support/allocators/secure.h"
#include "uint256.h"
#include "pubkey.h"
#include <stdexcept>
#include <vector>
Go to the source code of this file.
|
| typedef std::vector< unsigned char, secure_allocator< unsigned char > > | CPrivKey |
| | CPrivKey is a serialized private key, with all parameters included (PRIVATE_KEY_SIZE bytes) More...
|
| |
◆ CPrivKey
CPrivKey is a serialized private key, with all parameters included (PRIVATE_KEY_SIZE bytes)
Definition at line 26 of file key.h.
◆ ECC_InitSanityCheck()
| bool ECC_InitSanityCheck |
( |
void |
| ) |
|
Check that required EC support is available at runtime.
Definition at line 336 of file key.cpp.
◆ ECC_Start()
Initialize the elliptic curve support.
May not be called twice without calling ECC_Stop first.
Definition at line 344 of file key.cpp.
◆ ECC_Stop()
Deinitialize the elliptic curve support.
No-op if ECC_Start wasn't called first.
Definition at line 361 of file key.cpp.