Home | History | Annotate | Download | only in pkcs7

Lines Matching defs:bio_err

69 BIO *bio_err=NULL;
90 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
211 BIO_printf(bio_err,"depth=%d %s\n",depth,buf);
214 BIO_printf(bio_err,"verify error:num=%d:%s\n",err,
231 BIO_printf(bio_err,"issuer= %s\n",buf);
235 BIO_printf(bio_err,"notBefore=");
236 ASN1_UTCTIME_print(bio_err,X509_get_notBefore(ctx->current_cert));
237 BIO_printf(bio_err,"\n");
241 BIO_printf(bio_err,"notAfter=");
242 ASN1_UTCTIME_print(bio_err,X509_get_notAfter(ctx->current_cert));
243 BIO_printf(bio_err,"\n");
246 BIO_printf(bio_err,"verify return:%d\n",ok);