/optee_os/core/lib/libtomcrypt/src/pk/pkcs1/ |
A D | pkcs_1_pss_decode.c | 63 DB = XMALLOC(modulus_len); in pkcs_1_pss_decode() 64 mask = XMALLOC(modulus_len); in pkcs_1_pss_decode() 65 salt = XMALLOC(modulus_len); in pkcs_1_pss_decode() 66 hash = XMALLOC(modulus_len); in pkcs_1_pss_decode()
|
A D | pkcs_1_pss_encode.c | 65 DB = XMALLOC(modulus_len); in pkcs_1_pss_encode() 66 mask = XMALLOC(modulus_len); in pkcs_1_pss_encode() 67 salt = XMALLOC(modulus_len); in pkcs_1_pss_encode() 68 hash = XMALLOC(modulus_len); in pkcs_1_pss_encode()
|
A D | pkcs_1_oaep_decode.c | 63 DB = XMALLOC(modulus_len); in pkcs_1_oaep_decode() 64 mask = XMALLOC(modulus_len); in pkcs_1_oaep_decode() 65 seed = XMALLOC(hLen); in pkcs_1_oaep_decode()
|
A D | pkcs_1_oaep_encode.c | 66 DB = XMALLOC(modulus_len); in pkcs_1_oaep_encode() 67 mask = XMALLOC(modulus_len); in pkcs_1_oaep_encode() 68 seed = XMALLOC(hLen); in pkcs_1_oaep_encode()
|
A D | pkcs_1_mgf1.c | 50 md = XMALLOC(sizeof(hash_state)); in pkcs_1_mgf1() 51 buf = XMALLOC(hLen); in pkcs_1_mgf1()
|
/optee_os/core/lib/libtomcrypt/src/pk/ecc/ |
A D | ecc_encrypt_key.c | 59 pub_expt = XMALLOC(ECC_BUF_SIZE); in ecc_encrypt_key() 60 ecc_shared = XMALLOC(ECC_BUF_SIZE); in ecc_encrypt_key() 61 skey = XMALLOC(MAXBLOCKSIZE); in ecc_encrypt_key()
|
A D | ecc_decrypt_key.c | 65 pub_expt = XMALLOC(ECC_BUF_SIZE); in ecc_decrypt_key() 66 ecc_shared = XMALLOC(ECC_BUF_SIZE); in ecc_decrypt_key() 67 skey = XMALLOC(MAXBLOCKSIZE); in ecc_decrypt_key()
|
/optee_os/core/lib/libtomcrypt/src/encauth/ocb/ |
A D | s_ocb_done.c | 59 Z = XMALLOC(MAXBLOCKSIZE); in s_ocb_done() 60 Y = XMALLOC(MAXBLOCKSIZE); in s_ocb_done() 61 X = XMALLOC(MAXBLOCKSIZE); in s_ocb_done()
|
/optee_os/core/lib/libtomcrypt/src/encauth/eax/ |
A D | eax_done.c | 37 headermac = XMALLOC(MAXBLOCKSIZE); in eax_done() 38 ctmac = XMALLOC(MAXBLOCKSIZE); in eax_done()
|
A D | eax_decrypt_verify_memory.c | 63 buf = XMALLOC(taglen); in eax_decrypt_verify_memory() 64 eax = XMALLOC(sizeof(*eax)); in eax_decrypt_verify_memory()
|
A D | eax_init.c | 55 buf = XMALLOC(MAXBLOCKSIZE); in eax_init() 56 omac = XMALLOC(sizeof(*omac)); in eax_init()
|
/optee_os/core/lib/libtomcrypt/src/encauth/ocb3/ |
A D | ocb3_decrypt_verify_memory.c | 59 buf = XMALLOC(taglen); in ocb3_decrypt_verify_memory() 60 ocb = XMALLOC(sizeof(ocb3_state)); in ocb3_decrypt_verify_memory()
|
/optee_os/core/lib/libtomcrypt/src/encauth/gcm/ |
A D | gcm_memory.c | 67 orig = gcm = XMALLOC(sizeof(*gcm)); in gcm_memory() 69 orig = gcm = XMALLOC(sizeof(*gcm) + 16); in gcm_memory()
|
/optee_os/core/lib/libtomcrypt/src/mac/hmac/ |
A D | hmac_done.c | 47 buf = XMALLOC(LTC_HMAC_BLOCKSIZE); in hmac_done() 48 isha = XMALLOC(hashsize); in hmac_done()
|
/optee_os/core/lib/libtomcrypt/src/misc/pkcs5/ |
A D | pkcs_5_2.c | 51 buf[0] = XMALLOC(MAXBLOCKSIZE * 2); in pkcs_5_alg2() 52 hmac = XMALLOC(sizeof(hmac_state)); in pkcs_5_alg2()
|
A D | pkcs_5_1.c | 66 md = XMALLOC(sizeof(hash_state)); in _pkcs_5_alg1_common() 67 buf = XMALLOC(MAXBLOCKSIZE); in _pkcs_5_alg1_common()
|
/optee_os/core/lib/libtomcrypt/src/pk/dsa/ |
A D | dsa_decrypt_key.c | 68 expt = XMALLOC(mp_unsigned_bin_size(key->p) + 1); in dsa_decrypt_key() 69 skey = XMALLOC(MAXBLOCKSIZE); in dsa_decrypt_key()
|
A D | dsa_encrypt_key.c | 64 expt = XMALLOC(mp_unsigned_bin_size(key->p) + 1); in dsa_encrypt_key() 65 skey = XMALLOC(MAXBLOCKSIZE); in dsa_encrypt_key()
|
/optee_os/core/lib/libtomcrypt/src/misc/hkdf/ |
A D | hkdf.c | 67 T = XMALLOC(Tlen); /* Replace with static buffer? */ in hkdf_expand() 125 extracted = XMALLOC(hashsize); /* replace with static buffer? */ in hkdf()
|
/optee_os/core/lib/libtomcrypt/src/misc/pkcs12/ |
A D | pkcs12_kdf.c | 38 key = XMALLOC(u * c); in pkcs12_kdf() 39 I = XMALLOC(Plen + Slen); in pkcs12_kdf()
|
/optee_os/core/lib/libtomcrypt/src/pk/rsa/ |
A D | rsa_import_pkcs8.c | 76 buf1 = XMALLOC(buf1len); in rsa_import_pkcs8() 79 buf2 = XMALLOC(buf2len); in rsa_import_pkcs8()
|
A D | rsa_verify_hash.c | 75 tmpbuf = XMALLOC(siglen); in rsa_verify_hash_ex() 111 out = XMALLOC(outlen); in rsa_verify_hash_ex()
|
/optee_os/core/lib/libtomcrypt/src/mac/pelican/ |
A D | pelican_memory.c | 35 pel = XMALLOC(sizeof(*pel)); in pelican_memory()
|
/optee_os/core/lib/libtomcrypt/src/mac/pmac/ |
A D | pmac_memory.c | 44 pmac = XMALLOC(sizeof(pmac_state)); in pmac_memory()
|
/optee_os/core/lib/libtomcrypt/src/pk/ed25519/ |
A D | ed25519_sign.c | 49 s = XMALLOC(smlen); in ed25519_sign()
|