/external/chromium_org/third_party/openssl/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/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/chromium_org/third_party/openssl/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);
|
/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);
|