Lines Matching refs:out

386 	goto out;
390 goto out;
397 goto out;
401 goto out;
405 out:
432 goto out;
437 goto out;
441 goto out;
446 out:
523 goto out; \
531 goto out;
575 out:
955 /* will not fill-out EVP_PKEY because it's on the smartcard */
1205 BIO *out = NULL;
1395 out = BIO_new(BIO_s_mem());
1398 if (PKCS7_verify(p7, NULL, store, NULL, out, flags)) {
1450 i = BIO_read(out, &((*data)[size]), 1024 * 10);
1464 goto out;
1491 out:
1495 if (out != NULL)
1496 BIO_free(out);
1525 unsigned char **out,
1616 if (!*out_len || (p = *out = (unsigned char *)malloc(*out_len)) == NULL) {
1628 print_buffer_bin(*out, *out_len, "/tmp/kdc_enveloped_data");
1660 BIO *out = NULL;
1690 out = BIO_new(BIO_s_mem());
1691 if (pkcs7_decrypt(context, id_cryptoctx, p7, out)) {
1706 i = BIO_read(out, &(tmp_buf[size]), 1024 * 10);
1799 if (out != NULL)
1800 BIO_free(out);
3172 unsigned char **out, unsigned int *out_len,
3194 p = *out = (unsigned char *)malloc(tot_len);
3220 unsigned char **out, unsigned int *out_len,
3247 p = *out = (unsigned char *)malloc(tot_len);
3273 unsigned char **out, unsigned int *out_len)
3289 p = *out = (unsigned char *)malloc(tot_len);
3783 goto out;
3789 goto out;
3819 goto out;
3824 goto out;
3829 goto out;
3847 goto out;
3858 goto out;
3864 goto out;
3887 out:
3914 * context. This function fills out a pkinit_identity_crypto_context with a
3984 goto out;
3993 goto out;
4001 goto out;
4009 goto out;
4023 goto out;
4035 goto out;
4053 goto out;
4062 goto out;
4074 goto out;
4085 goto out;
4094 goto out;
4114 goto out;
4125 goto out;
4131 * let's check the certs out to see if any match the criteria if
4147 goto out;
4183 goto out;
4224 goto out;
4231 goto out;
4242 goto out;
4258 goto out;
4272 goto out;
4288 goto out;
4294 goto out;
4316 out:
4355 * I can't figure out any other way to decide which key to use.
5541 goto out;
5557 out:
5563 * size is an in/out parameter. On input it is the size
5574 BIO *out = NULL;
5576 out = BIO_new(BIO_s_mem ());
5577 if (X509_NAME_print_ex(out, a, 0, flag) > 0) {
5578 if (buf != NULL && *size > (int) BIO_number_written(out)) {
5580 BIO_read(out, buf, (int) BIO_number_written(out));
5583 *size = BIO_number_written(out);
5586 BIO_free(out);
5877 * weed out duplicates, and push new ones onto the return stack
6340 unsigned char **out,
6349 *out = NULL;
6359 if ((p = *out = (unsigned char *)malloc((size_t) len)) == NULL)
6495 BIO *out=NULL,*etmp=NULL,*bio=NULL;
6623 if (out == NULL)
6624 out=etmp;
6626 BIO_push(out,etmp);
6635 BIO_push(out,bio);
6639 goto out;
6642 if (out != NULL) BIO_free_all(out);
6645 out=NULL;
6647 out:
6651 return(out);
6656 unsigned char **out, long *out_len)
6666 if ((*out = (unsigned char *) malloc((size_t) *out_len + 1)) == NULL) {
6670 (void) memcpy(*out, s->data, (size_t) s->length);
6671 (*out)[s->length] = '\0';