Searched refs:OPENSSL_malloc (Results 151 - 175 of 247) sorted by relevance

12345678910

/barrelfish-master/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_blind.c143 if ((ret=(BN_BLINDING *)OPENSSL_malloc(sizeof(BN_BLINDING))) == NULL)
H A Dbn_lib.c302 if ((ret=(BIGNUM *)OPENSSL_malloc(sizeof(BIGNUM))) == NULL)
336 a=A=(BN_ULONG *)OPENSSL_malloc(sizeof(BN_ULONG)*words);
/barrelfish-master/lib/openssl-1.0.0d/crypto/dh/
H A Ddh_lib.c111 ret=(DH *)OPENSSL_malloc(sizeof(DH));
/barrelfish-master/lib/openssl-1.0.0d/crypto/dsa/
H A Ddsa_lib.c117 ret=(DSA *)OPENSSL_malloc(sizeof(DSA));
H A Ddsa_pmeth.c84 dctx = OPENSSL_malloc(sizeof(DSA_PKEY_CTX));
/barrelfish-master/lib/openssl-1.0.0d/crypto/ec/
H A Dec_pmeth.c80 dctx = OPENSSL_malloc(sizeof(EC_PKEY_CTX));
/barrelfish-master/lib/openssl-1.0.0d/crypto/engine/
H A Deng_table.c149 fnd = OPENSSL_malloc(sizeof(ENGINE_PILE));
/barrelfish-master/lib/openssl-1.0.0d/crypto/evp/
H A Devp_pbe.c236 if (!(pbe_tmp = (EVP_PBE_CTL*) OPENSSL_malloc (sizeof(EVP_PBE_CTL))))
/barrelfish-master/lib/openssl-1.0.0d/crypto/pkcs7/
H A Dpk7_doit.c172 ek = OPENSSL_malloc(eklen);
227 ek = OPENSSL_malloc(eklen);
803 abuf = OPENSSL_malloc(abuflen);
886 abuf = OPENSSL_malloc(siglen);
/barrelfish-master/lib/openssl-1.0.0d/crypto/rsa/
H A Drsa_ameth.c204 m=(unsigned char *)OPENSSL_malloc(buf_len+10);
H A Drsa_eay.c188 buf = OPENSSL_malloc(num);
364 buf = OPENSSL_malloc(num);
497 buf = OPENSSL_malloc(num);
647 buf = OPENSSL_malloc(num);
/barrelfish-master/lib/openssl-1.0.0d/crypto/store/
H A Dstr_mem.c225 (struct mem_ctx_st *)OPENSSL_malloc(sizeof(struct mem_ctx_st));
/barrelfish-master/lib/openssl-1.0.0d/crypto/x509/
H A Dx509_req.c87 ri->version->data=(unsigned char *)OPENSSL_malloc(1);
H A Dx509_trs.c172 if(!(trtmp = OPENSSL_malloc(sizeof(X509_TRUST)))) {
H A Dx509_vpm.c91 param = OPENSSL_malloc(sizeof(X509_VERIFY_PARAM));
/barrelfish-master/lib/openssl-1.0.0d/engines/ccgost/
H A Dgost_ameth.c589 databuf = OPENSSL_malloc(octet->length);
620 databuf = OPENSSL_malloc(data_len);
660 databuf = OPENSSL_malloc(octet->length);
730 databuf = OPENSSL_malloc(data_len);
H A Dgosthash.c15 /* Use OPENSSL_malloc for memory allocation if compiled with
21 # define MYALLOC(size) OPENSSL_malloc(size)
/barrelfish-master/lib/openssl-1.0.0d/apps/
H A Dapps.c201 buf=(char *)OPENSSL_malloc(len+1);
212 arg=(char **)OPENSSL_malloc(sizeof(char *)*(i*2));
392 arg->data=(char **)OPENSSL_malloc(sizeof(char *)*arg->count);
592 buff = (char *)OPENSSL_malloc(bufsiz);
1536 p=OPENSSL_malloc(len);
1833 if ((retdb = OPENSSL_malloc(sizeof(CA_DB))) == NULL)
2115 char *buf = OPENSSL_malloc(buflen);
2117 char **ne_types = OPENSSL_malloc(max_ne * sizeof (char *));
2118 char **ne_values = OPENSSL_malloc(max_ne * sizeof (char *));
2119 int *mval = OPENSSL_malloc (max_n
[all...]
H A Denc.c371 strbuf=OPENSSL_malloc(SIZE);
372 buff=(unsigned char *)OPENSSL_malloc(EVP_ENCODE_LENGTH(bsize));
375 BIO_printf(bio_err,"OPENSSL_malloc failure %ld\n",(long)EVP_ENCODE_LENGTH(bsize));
H A Ddhparam.c467 data=(unsigned char *)OPENSSL_malloc(len);
470 perror("OPENSSL_malloc");
/barrelfish-master/lib/openssl-1.0.0d/crypto/des/
H A Ddes.c381 if ( (( buf=OPENSSL_malloc(BUFSIZE+8)) == NULL) ||
382 ((obuf=OPENSSL_malloc(BUFSIZE+8)) == NULL))
/barrelfish-master/lib/openssl-1.0.0d/crypto/jpake/
H A Djpake.c119 JPAKE_CTX *ctx = OPENSSL_malloc(sizeof *ctx);
153 unsigned char *bin = OPENSSL_malloc(l);
/barrelfish-master/lib/openssl-1.0.0d/crypto/ts/
H A Dts_rsp_verify.c549 if (!(result = OPENSSL_malloc(length)))
611 if (!(*imprint = OPENSSL_malloc(*imprint_len)))
/barrelfish-master/lib/openssl-1.0.0d/crypto/x509v3/
H A Dpcy_tree.c222 tree = OPENSSL_malloc(sizeof(X509_POLICY_TREE));
228 tree->levels = OPENSSL_malloc(sizeof(X509_POLICY_LEVEL) * n);
/barrelfish-master/lib/openssl-1.0.0d/ssl/
H A Ds3_both.c668 result = OPENSSL_malloc(sz);
698 #define freelist_extract(c,fr,sz) OPENSSL_malloc(sz)

Completed in 210 milliseconds

12345678910