Home | History | Annotate | Download | only in asn1

Lines Matching refs: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 if (!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); }
221 unsigned char *buf_in=NULL,*buf_out=NULL;
265 buf_out=(unsigned char *)OPENSSL_malloc((unsigned int)outl);
266 if ((buf_in == NULL) || (buf_out == NULL))
275 if (!EVP_SignFinal(&ctx,(unsigned char *)buf_out,
283 signature->data=buf_out;
284 buf_out=NULL;
295 if (buf_out != NULL)
296 { OPENSSL_cleanse((char *)buf_out,outll); OPENSSL_free(buf_out); }