Compute multiple double-SHA256's of 64-byte blobs. output: pointer to a blocks*32 byte output buffer input: pointer to a blocks*64 byte input buffer blocks: the number of hashes to compute.
Declared in <crypto/sha256.h>
void
SHA256D64(
unsigned char* output,
unsigned char const* input,
size_t blocks);
| Name | Description |
|---|---|
| output | Pointer to a blocks*32 byte output buffer. |
| input | Pointer to a blocks*64 byte input buffer. |
| blocks | The number of hashes to compute. |