Compute the cache entry for an ECDSA signature check.

Synopsis

Declared in <script/sigcache.h>

void
ComputeEntryECDSA(
    uint256& entry,
    uint256 const& hash,
    std::vector<unsigned char> const& vchSig,
    CPubKey const& pubkey) const;

Parameters

Name

Description

entry

Output cache entry (salted hash of the inputs).

hash

The signature hash that was signed.

vchSig

The ECDSA signature bytes.

pubkey

The public key the signature is checked against.

Created with MrDocs