Parent topic:MPLAB® Harmony Crypto Library
int CRYPT_SHA_DataSizeSet(
CRYPT_SHA_CTX* sha,
unsigned int msgSize
);
The PIC32MZ hardware encryption module needs to know the size of the data before it starts processing. This function sets that value.
None.
Parameters | Description |
---|---|
sha | Pointer to CRYPT_SHA_CTX structure which holds the hash values. |
msgSize | Size of the data (in bytes) that will be processed. |
-
BAD_FUNC_ARG - An invalid pointer was passed to the function.
-
0 - An invalid pointer was not passed to the function.
All SHA hashes have to start at a particular value before adding new data to it. This function sets the necessary values for the structure.
CRYPT_SHA_CTX sha;
uint8_t buffer[1024];
uint8_t shasum[SHA_DIGEST_SIZE];
CRYPT_SHA_Initialize(&sha);
CRYPT_SHADataSizeSet(&sha, sizeof(buffer));
CRYPT_SHA_DataAdd(&sha, buffer, sizeof(buffer));
CRYPT_SHA_Finalize(&sha, shasum);