Searched refs:XMEM_NEQ (Results 1 – 11 of 11) sorted by relevance
/optee_os/core/lib/libtomcrypt/src/pk/ed25519/ |
A D | ed25519_set_key.c | 44 if (XMEM_NEQ(pk, key->pub, sizeof(key->pub)) != 0) { in ed25519_set_key()
|
/optee_os/core/lib/libtomcrypt/src/pk/x25519/ |
A D | x25519_set_key.c | 44 if (XMEM_NEQ(u, key->pub, sizeof(key->pub)) != 0) { in x25519_set_key()
|
/optee_os/core/lib/libtomcrypt/src/encauth/ocb/ |
A D | ocb_done_decrypt.c | 59 if (taglen <= tagbuflen && XMEM_NEQ(tagbuf, tag, taglen) == 0) { in ocb_done_decrypt()
|
/optee_os/core/lib/libtomcrypt/src/encauth/eax/ |
A D | eax_decrypt_verify_memory.c | 89 if (buflen >= taglen && XMEM_NEQ(buf, tag, taglen) == 0) { in eax_decrypt_verify_memory()
|
/optee_os/core/lib/libtomcrypt/src/encauth/ocb3/ |
A D | ocb3_decrypt_verify_memory.c | 91 if (buflen >= taglen && XMEM_NEQ(buf, tag, taglen) == 0) { in ocb3_decrypt_verify_memory()
|
/optee_os/core/lib/libtomcrypt/src/encauth/chachapoly/ |
A D | chacha20poly1305_memory.c | 63 if (buflen != *taglen || XMEM_NEQ(buf, tag, buflen) != 0) { in chacha20poly1305_memory()
|
/optee_os/core/lib/libtomcrypt/src/encauth/gcm/ |
A D | gcm_memory.c | 108 if (buflen != *taglen || XMEM_NEQ(buf, tag, buflen) != 0) { in gcm_memory()
|
/optee_os/core/lib/libtomcrypt/src/headers/ |
A D | tomcrypt_custom.h | 43 #ifndef XMEM_NEQ 45 #define XMEM_NEQ consttime_memcmp macro
|
/optee_os/core/lib/libtomcrypt/src/pk/pkcs1/ |
A D | pkcs_1_oaep_decode.c | 139 if (XMEM_NEQ(seed, DB, hLen) != 0) { in pkcs_1_oaep_decode()
|
A D | pkcs_1_pss_decode.c | 152 if (XMEM_NEQ(mask, hash, hLen) == 0) { in pkcs_1_pss_decode()
|
/optee_os/core/lib/libtomcrypt/src/encauth/ccm/ |
A D | ccm_memory.c | 350 err = XMEM_NEQ(ptTag, PAD, *taglen); in ccm_memory()
|
Completed in 131 milliseconds