Home
last modified time | relevance | path

Searched refs:unprocessed_size (Results 1 – 3 of 3) sorted by relevance

/trusted-firmware-m-latest/lib/ext/cryptocell-312-runtime/codesafe/src/psa_driver_api/src/
Dcc3xx_psa_cipher.c275 ( operation->unprocessed_size + input_length ) in cc3xx_cipher_update()
299 operation->unprocessed_size) || in cc3xx_cipher_update()
303 operation->unprocessed_size) || in cc3xx_cipher_update()
306 operation->unprocessed_size)) { in cc3xx_cipher_update()
308 [operation->unprocessed_size]), in cc3xx_cipher_update()
312 operation->unprocessed_size += input_length; in cc3xx_cipher_update()
316 if (0 != operation->unprocessed_size) { in cc3xx_cipher_update()
318 - operation->unprocessed_size; in cc3xx_cipher_update()
321 [operation->unprocessed_size]), in cc3xx_cipher_update()
336 operation->unprocessed_size = 0; in cc3xx_cipher_update()
[all …]
Dcc3xx_psa_mac.c150 if ((cmac_ctx->unprocessed_size > 0) && in cmac_update()
151 (ilen > (block_size - cmac_ctx->unprocessed_size))) { in cmac_update()
153 &(cmac_ctx)->unprocessed_data[cmac_ctx->unprocessed_size], in cmac_update()
154 input, block_size - cmac_ctx->unprocessed_size); in cmac_update()
172 input += (block_size - cmac_ctx->unprocessed_size); in cmac_update()
173 ilen -= (block_size - cmac_ctx->unprocessed_size); in cmac_update()
174 cmac_ctx->unprocessed_size = 0; in cmac_update()
205 &(cmac_ctx)->unprocessed_data[cmac_ctx->unprocessed_size], in cmac_update()
207 cmac_ctx->unprocessed_size += ilen; in cmac_update()
228 cmac_ctx->unprocessed_size, &inBuffInfo, NULL, in cmac_finish()
[all …]
/trusted-firmware-m-latest/lib/ext/cryptocell-312-runtime/codesafe/src/psa_driver_api/include/
Dcc3xx_crypto_primitives_private.h68 size_t unprocessed_size; /*!< Size of the cached data */ member