Searched refs:hashState (Results 1 – 1 of 1) sorted by relevance
/hal_nxp-3.5.0/mcux/mcux-sdk/middleware/mmcau/ |
D | fsl_mmcau.c | 26 typedef void (*cau_hash_api_t)(const uint8_t *msgData, const int numBlocks, uint32_t *hashState); 27 typedef void (*cau_hash_md5_api_t)(const uint8_t *msgData, const int numBlocks, uint8_t *hashState); 186 …cau_hash_api_t cauFunc, const uint8_t *msgData, uint32_t numBlocks, void *hashState, size_t stateS… in mmcau_hash_API() argument 190 if ((msgData != NULL) && (hashState != NULL) && (numBlocks != 0U)) in mmcau_hash_API() 200 hashStateWork = mmcau_align(hashState, hashStateAlign, ©InOut); in mmcau_hash_API() 203 mmcau_memcpy(hashStateAlign, hashState, stateSize); in mmcau_hash_API() 210 mmcau_memcpy(hashState, hashStateAlign, stateSize); in mmcau_hash_API() 222 …cau_hash_md5_api_t cauFunc, const uint8_t *msgData, uint32_t numBlocks, void *hashState, size_t st… in mmcau_hash_MD5API() argument 226 if ((msgData != NULL) && (hashState != NULL) && (numBlocks != 0U)) in mmcau_hash_MD5API() 236 hashStateWork = mmcau_align(hashState, hashStateAlign, ©InOut); in mmcau_hash_MD5API() [all …]
|