Home | History | Annotate | Download | only in asn1

Lines Matching full:buf_out

134 	unsigned char *p,*buf_in=NULL,*buf_out=NULL;
176 buf_out=(unsigned char *)OPENSSL_malloc((unsigned int)outl);
177 if ((buf_in == NULL) || (buf_out == NULL))
188 if (!EVP_SignFinal(&ctx,(unsigned char *)buf_out,
196 signature->data=buf_out;
197 buf_out=NULL;
208 if (buf_out != NULL)
209 { OPENSSL_cleanse((char *)buf_out,outll); OPENSSL_free(buf_out); }
220 unsigned char *buf_in=NULL,*buf_out=NULL;
262 buf_out=(unsigned char *)OPENSSL_malloc((unsigned int)outl);
263 if ((buf_in == NULL) || (buf_out == NULL))
277 if (!EVP_SignFinal(&ctx,(unsigned char *)buf_out,
285 signature->data=buf_out;
286 buf_out=NULL;
297 if (buf_out != NULL)
298 { OPENSSL_cleanse((char *)buf_out,outll); OPENSSL_free(buf_out); }