Home
last modified time | relevance | path

Searched refs:blockSizeInBytes (Results 1 – 5 of 5) sorted by relevance

/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/codesafe/src/mbedtls_api/
Dmbedtls_hash_common.c34 …bytesToAdd = CC_MIN(((pHashCtx->blockSizeInBytes - pHashCtx->prevDataInSize) % pHashCtx->blockSize… in mbedtls_hashUpdate()
44 if (pHashCtx->prevDataInSize == pHashCtx->blockSizeInBytes) { in mbedtls_hashUpdate()
49 rc = SetDataBuffersInfo((uint8_t*)localPrevDataIn, pHashCtx->blockSizeInBytes, &inBuffInfo, in mbedtls_hashUpdate()
56 rc = ProcessHashDrv(pHashCtx, &inBuffInfo, pHashCtx->blockSizeInBytes); in mbedtls_hashUpdate()
65 bytesToAdd = (dataInSize / pHashCtx->blockSizeInBytes) * pHashCtx->blockSizeInBytes; in mbedtls_hashUpdate()
131 pHashCtx->blockSizeInBytes = HASH_BLOCK_SIZE_IN_BYTES; in mbedtls_sha_starts_internal()
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/codesafe/src/psa_driver_api/src/
Dcc3xx_psa_hash.c47 ((ctx_ptr->blockSizeInBytes - ctx_ptr->prevDataInSize) % in hash_update()
48 ctx_ptr->blockSizeInBytes), in hash_update()
63 if (ctx_ptr->prevDataInSize == ctx_ptr->blockSizeInBytes){ in hash_update()
73 ctx_ptr->blockSizeInBytes, &inBuffInfo, in hash_update()
81 ctx_ptr->blockSizeInBytes); in hash_update()
90 bytesToAdd = (dataInSize / ctx_ptr->blockSizeInBytes) * in hash_update()
91 ctx_ptr->blockSizeInBytes; in hash_update()
167 pHashCtx->blockSizeInBytes = HASH_BLOCK_SIZE_IN_BYTES; in cc3xx_hash_setup()
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/cc3x_sym/driver/
Dhash_driver.h37 uint32_t blockSizeInBytes; member
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/shared/include/crypto_api/
Dcc_ffcdh.h339 uint32_t blockSizeInBytes; /*!< HASH function block size in bytes */ member
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/ffcdh/
Dcc_ffcdh.c812 (hmacSaltSize != DhHashBlockAndDigestSizes[hashMode].blockSizeInBytes), in CC_FfcDhCtxSetSchemeParams()