|
| CKey () noexcept=default |
|
| CKey (CKey &&) noexcept=default |
|
CKey & | operator= (CKey &&) noexcept=default |
|
CKey & | operator= (const CKey &other) |
|
| CKey (const CKey &other) |
|
template<typename T > |
void | Set (const T pbegin, const T pend, bool fCompressedIn) |
| Initialize using begin and end iterators to byte data. More...
|
|
unsigned int | size () const |
| Simple read-only vector-like interface. More...
|
|
const std::byte * | data () const |
|
const std::byte * | begin () const |
|
const std::byte * | end () const |
|
bool | IsValid () const |
| Check whether this private key is valid. More...
|
|
bool | IsCompressed () const |
| Check whether the public key corresponding to this private key is (to be) compressed. More...
|
|
void | MakeNewKey (bool fCompressed) |
| Generate a new private key using a cryptographic PRNG. More...
|
|
CPrivKey | GetPrivKey () const |
| Convert the private key to a CPrivKey (serialized OpenSSL private key data). More...
|
|
CPubKey | GetPubKey () const |
| Compute the public key from a private key. More...
|
|
bool | Sign (const uint256 &hash, std::vector< unsigned char > &vchSig, bool grind=true, uint32_t test_case=0) const |
| Create a DER-serialized signature. More...
|
|
bool | SignCompact (const uint256 &hash, std::vector< unsigned char > &vchSig) const |
| Create a compact signature (65 bytes), which allows reconstructing the used public key. More...
|
|
bool | SignSchnorr (const uint256 &hash, Span< unsigned char > sig, const uint256 *merkle_root, const uint256 &aux) const |
| Create a BIP-340 Schnorr signature, for the xonly-pubkey corresponding to *this, optionally tweaked by *merkle_root. More...
|
|
bool | Derive (CKey &keyChild, ChainCode &ccChild, unsigned int nChild, const ChainCode &cc) const |
| Derive BIP32 child key. More...
|
|
bool | VerifyPubKey (const CPubKey &vchPubKey) const |
| Verify thoroughly whether a private key and a public key match. More...
|
|
bool | Load (const CPrivKey &privkey, const CPubKey &vchPubKey, bool fSkipCheck) |
| Load private key and check that public key matches. More...
|
|
EllSwiftPubKey | EllSwiftCreate (Span< const std::byte > entropy) const |
| Create an ellswift-encoded public key for this key, with specified entropy. More...
|
|
ECDHSecret | ComputeBIP324ECDHSecret (const EllSwiftPubKey &their_ellswift, const EllSwiftPubKey &our_ellswift, bool initiating) const |
| Compute a BIP324-style ECDH shared secret. More...
|
|
KeyPair | ComputeKeyPair (const uint256 *merkle_root) const |
| Compute a KeyPair. More...
|
|
An encapsulated private key.
Definition at line 34 of file key.h.
Create an ellswift-encoded public key for this key, with specified entropy.
entropy must be a 32-byte span with additional entropy to use in the encoding. Every public key has ~2^256 different encodings, and this function will deterministically pick one of them, based on entropy. Note that even without truly random entropy, the resulting encoding will be indistinguishable from uniform to any adversary who does not know the private key (because the private key itself is always used as entropy as well).
Definition at line 311 of file key.cpp.
bool CKey::SignCompact |
( |
const uint256 & |
hash, |
|
|
std::vector< unsigned char > & |
vchSig |
|
) |
| const |
Create a compact signature (65 bytes), which allows reconstructing the used public key.
The format is one header byte, followed by two times 32 bytes for the serialized r and s values. The header byte: 0x1B = first key with even y, 0x1C = first key with odd y, 0x1D = second key with even y, 0x1E = second key with odd y, add 0x04 for compressed keys.
Definition at line 249 of file key.cpp.
bool CKey::SignSchnorr |
( |
const uint256 & |
hash, |
|
|
Span< unsigned char > |
sig, |
|
|
const uint256 * |
merkle_root, |
|
|
const uint256 & |
aux |
|
) |
| const |
Create a BIP-340 Schnorr signature, for the xonly-pubkey corresponding to *this, optionally tweaked by *merkle_root.
Additional nonce entropy is provided through aux.
merkle_root is used to optionally perform tweaking of the private key, as specified in BIP341:
- If merkle_root == nullptr: no tweaking is done, sign with key directly (this is used for signatures in BIP342 script).
- If merkle_root->IsNull(): sign with key + H_TapTweak(pubkey) (this is used for key path spending when no scripts are present).
- Otherwise: sign with key + H_TapTweak(pubkey || *merkle_root) (this is used for key path spending, with specific Merkle root of the script tree).
Definition at line 272 of file key.cpp.