Home
last modified time | relevance | path

Searched refs:cmac (Results 1 – 7 of 7) sorted by relevance

/optee_os/lib/libmbedtls/mbedtls/library/
H A Dpsa_crypto_mac.c184 ret = mbedtls_cipher_setup(&operation->ctx.cmac, cipher_info); in cmac_setup()
189 ret = mbedtls_cipher_cmac_starts(&operation->ctx.cmac, in cmac_setup()
212 mbedtls_cipher_init(&operation->ctx.cmac); in mac_init()
244 mbedtls_cipher_free(&operation->ctx.cmac); in mbedtls_psa_mac_abort()
353 mbedtls_cipher_cmac_update(&operation->ctx.cmac, in mbedtls_psa_mac_update()
379 int ret = mbedtls_cipher_cmac_finish(&operation->ctx.cmac, tmp); in psa_mac_finish_internal()
/optee_os/lib/libmbedtls/core/
H A Dsub.mk22 srcs-$(CFG_CRYPTO_CMAC) += cmac.c
/optee_os/lib/libmbedtls/mbedtls/include/psa/
H A Dcrypto_builtin_composites.h65 mbedtls_cipher_context_t MBEDTLS_PRIVATE(cmac);
/optee_os/lib/libmbedtls/
H A Dsub.mk24 SRCS_CRYPTO += cmac.c
82 SRCS_CRYPTO += cmac.c
/optee_os/core/drivers/crypto/stm32/
H A Dstm32_saes.c1243 uint8_t cmac[AES_BLOCK_SIZE] = { }; in stm32_saes_kdf() local
1268 data, data_size, cmac); in stm32_saes_kdf()
1272 memcpy(subkey + subkey_index, cmac, in stm32_saes_kdf()
1273 MIN(subkey_size - subkey_index, sizeof(cmac))); in stm32_saes_kdf()
1274 subkey_index += sizeof(cmac); in stm32_saes_kdf()
/optee_os/core/lib/libtomcrypt/
H A Dsub.mk146 srcs-$(_CFG_CORE_LTC_CMAC) += cmac.c
/optee_os/lib/libmbedtls/mbedtls/
H A DChangeLog260 cipher.h, cmac.h, gcm.h, poly1305.h;
3817 * Fix a spurious uninitialized variable warning in cmac.c. Fix independently