OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:buf_out
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/boringssl/src/crypto/x509/
a_sign.c
77
unsigned char *p,*buf_in=NULL,*
buf_out
=NULL;
119
buf_out
=(unsigned char *)OPENSSL_malloc((unsigned int)outl);
120
if ((buf_in == NULL) || (
buf_out
== NULL))
131
|| !EVP_SignFinal(&ctx,(unsigned char *)
buf_out
,
139
signature->data=
buf_out
;
140
buf_out
=NULL;
151
if (
buf_out
!= NULL)
152
{ OPENSSL_cleanse((char *)
buf_out
,outll); OPENSSL_free(
buf_out
); }
180
unsigned char *buf_in=NULL,*
buf_out
=NULL
local
[
all
...]
/external/openssl/crypto/asn1/
a_sign.c
135
unsigned char *p,*buf_in=NULL,*
buf_out
=NULL;
local
177
buf_out
=(unsigned char *)OPENSSL_malloc((unsigned int)outl);
178
if ((buf_in == NULL) || (
buf_out
== NULL))
189
|| !EVP_SignFinal(&ctx,(unsigned char *)
buf_out
,
197
signature->data=
buf_out
;
198
buf_out
=NULL;
209
if (
buf_out
!= NULL)
210
{ OPENSSL_cleanse((char *)
buf_out
,outll); OPENSSL_free(
buf_out
); }
237
unsigned char *buf_in=NULL,*
buf_out
=NULL
local
[
all
...]
/external/openssl/apps/
pkeyutl.c
101
unsigned char *buf_in = NULL, *
buf_out
= NULL, *sig = NULL;
local
347
buf_out
= OPENSSL_malloc(buf_outlen);
348
if (!
buf_out
)
352
buf_out
, (size_t *)&buf_outlen,
366
if(!ASN1_parse_dump(out,
buf_out
, buf_outlen, 1, -1))
370
BIO_dump(out, (char *)
buf_out
, buf_outlen);
372
BIO_write(out,
buf_out
, buf_outlen);
381
if (
buf_out
)
382
OPENSSL_free(
buf_out
);
Completed in 221 milliseconds