-
Notifications
You must be signed in to change notification settings - Fork 2
VerifyBeamHashIII
anatol edited this page Jul 13, 2021
·
1 revision
uint8_t VerifyBeamHashIII(const void* pInp , uint32_t nInp , const void* pNonce ,
uint32_t nNonce , const void* pSol , uint32_t nSol);
Verifies the BeamHashIII PoW solution for the specified input and nonce
-
pInp
: pointer to the input memory buffer (hash value) -
nInp
: the size of the input buffer -
pNonce
: pointer to the nonce buffer -
nNonce
: the size of the nonce buffer -
pSol
: pointer to the buffer in memory, containing the solution of BeamHashIII PoW algorithm -
nSol
: the size of the solution buffer
- 1 if the solution is valid
- 0 otherwise
- none