Home
last modified time | relevance | path

Searched refs:XMEM_NEQ (Results 1 – 9 of 9) sorted by relevance

/optee_os/core/lib/libtomcrypt/src/encauth/ocb/
H A Docb_done_decrypt.c52 if (taglen <= tagbuflen && XMEM_NEQ(tagbuf, tag, taglen) == 0) { in ocb_done_decrypt()
/optee_os/core/lib/libtomcrypt/src/encauth/eax/
H A Deax_decrypt_verify_memory.c82 if (buflen >= taglen && XMEM_NEQ(buf, tag, taglen) == 0) { in eax_decrypt_verify_memory()
/optee_os/core/lib/libtomcrypt/src/encauth/ocb3/
H A Docb3_decrypt_verify_memory.c84 if (buflen >= taglen && XMEM_NEQ(buf, tag, taglen) == 0) { in ocb3_decrypt_verify_memory()
/optee_os/core/lib/libtomcrypt/src/encauth/chachapoly/
H A Dchacha20poly1305_memory.c56 if (buflen != *taglen || XMEM_NEQ(buf, tag, buflen) != 0) { in chacha20poly1305_memory()
/optee_os/core/lib/libtomcrypt/src/encauth/gcm/
H A Dgcm_memory.c99 if (buflen != *taglen || XMEM_NEQ(buf, tag, buflen) != 0) { in gcm_memory()
/optee_os/core/lib/libtomcrypt/src/pk/pkcs1/
H A Dpkcs_1_pss_decode.c146 if (FTMN_CALLEE_DONE_MEMCMP(XMEM_NEQ, mask, hash, hLen) == 0) { in pkcs_1_pss_decode()
H A Dpkcs_1_oaep_decode.c142 if (XMEM_NEQ(seed, DB, hLen) != 0) { in pkcs_1_oaep_decode()
/optee_os/core/lib/libtomcrypt/src/headers/
H A Dtomcrypt_custom.h36 #ifndef XMEM_NEQ
37 #define XMEM_NEQ mem_neq macro
/optee_os/core/lib/libtomcrypt/src/encauth/ccm/
H A Dccm_memory.c350 err = XMEM_NEQ(ptTag, PAD, *taglen); in ccm_memory()