Searched refs:omac_process (Results 1 – 11 of 11) sorted by relevance
| /optee_os/core/lib/libtomcrypt/src/encauth/eax/ |
| H A D | eax_init.c | 68 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 D | eax_addheader.c | 23 return omac_process(&eax->headeromac, header, length); in eax_addheader()
|
| H A D | eax_encrypt.c | 35 return omac_process(&eax->ctomac, ct, length); in eax_encrypt()
|
| H A D | eax_decrypt.c | 30 if ((err = omac_process(&eax->ctomac, ct, length)) != CRYPT_OK) { in eax_decrypt()
|
| /optee_os/core/lib/libtomcrypt/src/mac/omac/ |
| H A D | omac_memory.c | 56 if ((err = omac_process(omac, in, inlen)) != CRYPT_OK) { in omac_memory()
|
| H A D | omac_memory_multi.c | 56 if ((err = omac_process(omac, curptr, curlen)) != CRYPT_OK) { in omac_memory_multi()
|
| H A D | omac_file.c | 63 if ((err = omac_process(&omac, buf, (unsigned long)x)) != CRYPT_OK) { in omac_file()
|
| H A D | omac_process.c | 20 int omac_process(omac_state *omac, const unsigned char *in, unsigned long inlen) in omac_process() function
|
| /optee_os/core/lib/libtomcrypt/ |
| H A D | cmac.c | 46 if (omac_process(&to_omac_ctx(ctx)->state, data, len) == CRYPT_OK) in ltc_omac_update()
|
| H A D | sub.mk | 151 srcs-$(_CFG_CORE_LTC_CMAC) += src/mac/omac/omac_process.c
|
| /optee_os/core/lib/libtomcrypt/src/headers/ |
| H A D | tomcrypt_mac.h | 42 int omac_process(omac_state *omac, const unsigned char *in, unsigned long inlen);
|