HomeSort by relevance Sort by last modified time
    Searched refs:XMALLOC (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/dropbear/libtomcrypt/src/mac/pelican/
pelican_memory.c 36 pel = XMALLOC(sizeof(*pel));
  /external/dropbear/libtommath/
bn_mp_init.c 24 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * MP_PREC);
bn_mp_init_size.c 27 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * size);
bn_mp_fwrite.c 27 buf = OPT_CAST(char) XMALLOC (len);
  /external/dropbear/libtomcrypt/src/encauth/eax/
eax_decrypt_verify_memory.c 61 buf = XMALLOC(taglen);
62 eax = XMALLOC(sizeof(*eax));
eax_done.c 38 headermac = XMALLOC(MAXBLOCKSIZE);
39 ctmac = XMALLOC(MAXBLOCKSIZE);
eax_encrypt_authenticate_memory.c 53 eax = XMALLOC(sizeof(*eax));
  /external/dropbear/libtomcrypt/src/encauth/gcm/
gcm_memory.c 69 orig = gcm = XMALLOC(sizeof(*gcm));
71 orig = gcm = XMALLOC(sizeof(*gcm) + 16);
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_custom.h 8 #ifndef XMALLOC
12 #define XMALLOC malloc
  /external/dropbear/libtomcrypt/src/misc/pkcs5/
pkcs_5_1.c 50 md = XMALLOC(sizeof(hash_state));
51 buf = XMALLOC(MAXBLOCKSIZE);
pkcs_5_2.c 52 buf[0] = XMALLOC(MAXBLOCKSIZE * 2);
53 hmac = XMALLOC(sizeof(hmac_state));
  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_mgf1.c 51 md = XMALLOC(sizeof(hash_state));
52 buf = XMALLOC(hLen);
pkcs_1_oaep_encode.c 67 DB = XMALLOC(modulus_len);
68 mask = XMALLOC(modulus_len);
69 seed = XMALLOC(hLen);
pkcs_1_pss_decode.c 63 DB = XMALLOC(modulus_len);
64 mask = XMALLOC(modulus_len);
65 salt = XMALLOC(modulus_len);
66 hash = XMALLOC(modulus_len);
pkcs_1_pss_encode.c 65 DB = XMALLOC(modulus_len);
66 mask = XMALLOC(modulus_len);
67 salt = XMALLOC(modulus_len);
68 hash = XMALLOC(modulus_len);
  /external/dropbear/libtomcrypt/src/encauth/ocb/
s_ocb_done.c 60 Z = XMALLOC(MAXBLOCKSIZE);
61 Y = XMALLOC(MAXBLOCKSIZE);
62 X = XMALLOC(MAXBLOCKSIZE);
ocb_done_decrypt.c 50 tagbuf = XMALLOC(MAXBLOCKSIZE);
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_decrypt_key.c 70 pub_expt = XMALLOC(ECC_BUF_SIZE);
71 ecc_shared = XMALLOC(ECC_BUF_SIZE);
72 skey = XMALLOC(MAXBLOCKSIZE);
ecc_encrypt_key.c 71 pub_expt = XMALLOC(ECC_BUF_SIZE);
72 ecc_shared = XMALLOC(ECC_BUF_SIZE);
73 skey = XMALLOC(MAXBLOCKSIZE);
  /external/dropbear/libtomcrypt/src/hashes/helper/
hash_memory.c 45 md = XMALLOC(sizeof(hash_state));
  /external/dropbear/libtomcrypt/src/mac/hmac/
hmac_memory.c 56 hmac = XMALLOC(sizeof(hmac_state));
hmac_done.c 48 buf = XMALLOC(HMAC_BLOCKSIZE);
49 isha = XMALLOC(hashsize);
hmac_init.c 53 buf = XMALLOC(HMAC_BLOCKSIZE);
59 hmac->key = XMALLOC(HMAC_BLOCKSIZE);
  /external/dropbear/libtomcrypt/src/mac/omac/
omac_memory.c 55 omac = XMALLOC(sizeof(omac_state));
  /external/dropbear/libtomcrypt/src/mac/pmac/
pmac_memory.c 45 pmac = XMALLOC(sizeof(pmac_state));

Completed in 168 milliseconds

1 2 3