Home
last modified time | relevance | path

Searched refs:omac_process (Results 1 – 11 of 11) sorted by relevance

/optee_os/core/lib/libtomcrypt/src/encauth/eax/
H A Deax_init.c68 if ((err = omac_process(omac, buf, blklen)) != CRYPT_OK) { in eax_init()
72 if ((err = omac_process(omac, nonce, noncelen)) != CRYPT_OK) { in eax_init()
90 if ((err = omac_process(&eax->headeromac, buf, blklen)) != CRYPT_OK) { in eax_init()
95 if ((err = omac_process(&eax->headeromac, header, headerlen)) != CRYPT_OK) { in eax_init()
115 if ((err = omac_process(&eax->ctomac, buf, blklen)) != CRYPT_OK) { in eax_init()
H A Deax_addheader.c23 return omac_process(&eax->headeromac, header, length); in eax_addheader()
H A Deax_encrypt.c35 return omac_process(&eax->ctomac, ct, length); in eax_encrypt()
H A Deax_decrypt.c30 if ((err = omac_process(&eax->ctomac, ct, length)) != CRYPT_OK) { in eax_decrypt()
/optee_os/core/lib/libtomcrypt/src/mac/omac/
H A Domac_memory.c56 if ((err = omac_process(omac, in, inlen)) != CRYPT_OK) { in omac_memory()
H A Domac_memory_multi.c56 if ((err = omac_process(omac, curptr, curlen)) != CRYPT_OK) { in omac_memory_multi()
H A Domac_file.c63 if ((err = omac_process(&omac, buf, (unsigned long)x)) != CRYPT_OK) { in omac_file()
H A Domac_process.c20 int omac_process(omac_state *omac, const unsigned char *in, unsigned long inlen) in omac_process() function
/optee_os/core/lib/libtomcrypt/
H A Dcmac.c46 if (omac_process(&to_omac_ctx(ctx)->state, data, len) == CRYPT_OK) in ltc_omac_update()
H A Dsub.mk151 srcs-$(_CFG_CORE_LTC_CMAC) += src/mac/omac/omac_process.c
/optee_os/core/lib/libtomcrypt/src/headers/
H A Dtomcrypt_mac.h42 int omac_process(omac_state *omac, const unsigned char *in, unsigned long inlen);