Lines Matching full:buf_out
135 unsigned char *p,*buf_in=NULL,*buf_out=NULL;
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;
302 buf_out=OPENSSL_malloc((unsigned int)outl);
303 if ((buf_in == NULL) || (buf_out == NULL))
311 || !EVP_DigestSignFinal(ctx, buf_out, &outl))
318 signature->data=buf_out;
319 buf_out=NULL;
330 if (buf_out != NULL)
331 { OPENSSL_cleanse((char *)buf_out,outll); OPENSSL_free(buf_out); }