Parent topic:MPLAB® Harmony Crypto Library
int CRYPT_SHA224_DataAdd(
CRYPT_SHA256_CTX* sha224,
const unsigned char* input,
unsigned int sz
);
This function updates the hash with the data provided.
The SHA224 context must be initialized prior to the first call of this function. The context must not be modified by code outside of this function.
Parameters | Description |
---|---|
sha224 | Pointer to CRYPT_SHA256_CTX structure which holds the hash values. |
input | Pointer to the data to use to update the hash. |
sz | Size of the data (in bytes) to use to update the hash. |
-
BAD_FUNC_ARG - An invalid pointer was passed to the function, either sha224 or input.
-
0 - An invalid pointer was not passed to the function.
In order to preserve the validity of the SHA224 hash, nothing must modify the context holding variable between calls to CRYPT_SHA224_DataAdd.
CRYPT_SHA256_CTX sha224;
uint8_t buffer[1024];
uint8_t shaSum[SHA224_DIGEST_SIZE];
CRYPT_SHA224_Initialize(&sha224);
CRYPT_SHA224_DataAdd(&sha224, buffer, sizeof(buffer));
CRYPT_SHA224_Finalize(&sha224, shaSum);