Searched refs:sarg (Results 1 – 5 of 5) sorted by relevance
/openssl-master/crypto/asn1/ |
A D | bio_ndef.c | 58 ASN1_STREAM_ARG sarg; in BIO_new_NDEF() local 82 sarg.out = out; in BIO_new_NDEF() 83 sarg.ndef_bio = NULL; in BIO_new_NDEF() 84 sarg.boundary = NULL; in BIO_new_NDEF() 91 ndef_aux->ndef_bio = sarg.ndef_bio; in BIO_new_NDEF() 92 ndef_aux->boundary = sarg.boundary; in BIO_new_NDEF() 97 return sarg.ndef_bio; in BIO_new_NDEF() 174 ASN1_STREAM_ARG sarg; in ndef_suffix() local 184 sarg.ndef_bio = ndef_aux->ndef_bio; in ndef_suffix() 185 sarg.out = ndef_aux->out; in ndef_suffix() [all …]
|
A D | asn_mime.c | 341 ASN1_STREAM_ARG sarg; in asn1_output_data() local 358 sarg.out = out; in asn1_output_data() 359 sarg.ndef_bio = NULL; in asn1_output_data() 360 sarg.boundary = NULL; in asn1_output_data() 364 if (aux->asn1_cb(ASN1_OP_DETACHED_PRE, &val, it, &sarg) <= 0) in asn1_output_data() 368 SMIME_crlf_copy(data, sarg.ndef_bio, flags); in asn1_output_data() 371 if (aux->asn1_cb(ASN1_OP_DETACHED_POST, &val, it, &sarg) <= 0) in asn1_output_data() 376 while (sarg.ndef_bio != out) { in asn1_output_data() 377 tmpbio = BIO_pop(sarg.ndef_bio); in asn1_output_data() 378 BIO_free(sarg.ndef_bio); in asn1_output_data() [all …]
|
/openssl-master/crypto/pkcs7/ |
A D | pk7_asn1.c | 36 ASN1_STREAM_ARG *sarg = exarg; in pk7_cb() local 42 if (PKCS7_stream(&sarg->boundary, *pp7) <= 0) in pk7_cb() 46 sarg->ndef_bio = PKCS7_dataInit(*pp7, sarg->out); in pk7_cb() 47 if (!sarg->ndef_bio) in pk7_cb() 53 if (PKCS7_dataFinal(*pp7, sarg->ndef_bio) <= 0) in pk7_cb()
|
/openssl-master/crypto/cms/ |
A D | cms_asn1.c | 296 ASN1_STREAM_ARG *sarg = exarg; in cms_cb() local 305 if (CMS_stream(&sarg->boundary, cms) <= 0) in cms_cb() 309 sarg->ndef_bio = CMS_dataInit(cms, sarg->out); in cms_cb() 310 if (!sarg->ndef_bio) in cms_cb() 316 if (CMS_dataFinal(cms, sarg->ndef_bio) <= 0) in cms_cb()
|
/openssl-master/ssl/ |
A D | t1_lib.c | 2407 sig_cb_st *sarg = arg; in sig_cb() local 2414 if (sarg->sigalgcnt == TLS_MAX_SIGALGCNT) in sig_cb() 2434 sarg->sigalgs[sarg->sigalgcnt++] = s->sigalg; in sig_cb() 2452 sarg->sigalgs[sarg->sigalgcnt++] = s->sigalg; in sig_cb() 2461 for (i = 0; i < sarg->sigalgcnt - 1; i++) { in sig_cb() 2462 if (sarg->sigalgs[i] == sarg->sigalgs[sarg->sigalgcnt - 1]) { in sig_cb() 2463 sarg->sigalgcnt--; in sig_cb()
|
Completed in 13 milliseconds