Searched defs:bio_err (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/openssl/openssl/crypto/conf/
H A Dconf_sap.c94 BIO *bio_err; local
96 if ((bio_err=BIO_new_fp(stderr, BIO_NOCLOSE)) != NULL)
98 BIO_printf(bio_err,"Auto configuration failed\n");
99 ERR_print_errors(bio_err);
100 BIO_free(bio_err);
/external/openssl/crypto/conf/
H A Dconf_sap.c94 BIO *bio_err; local
96 if ((bio_err=BIO_new_fp(stderr, BIO_NOCLOSE)) != NULL)
98 BIO_printf(bio_err,"Auto configuration failed\n");
99 ERR_print_errors(bio_err);
100 BIO_free(bio_err);
/external/chromium_org/third_party/openssl/openssl/crypto/dsa/
H A Ddsagen.c100 BIO *bio_err=NULL; local
102 if (bio_err == NULL)
103 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
106 dsa=DSA_generate_parameters(1024,seed,20,&counter,&h,cb,bio_err);
109 DSA_print(bio_err,dsa,0);
H A Ddsatest.c135 static BIO *bio_err=NULL; variable
147 if (bio_err == NULL)
148 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
157 BIO_printf(bio_err,"test generation of DSA parameters\n");
159 BN_GENCB_set(&cb, dsa_cb, bio_err);
164 BIO_printf(bio_err,"seed\n");
167 BIO_printf(bio_err,"%02X%02X%02X%02X ",
170 BIO_printf(bio_err,"\ncounter=%d h=%ld\n",counter,h);
172 DSA_print(bio_err,dsa,0);
175 BIO_printf(bio_err,"counte
[all...]
/external/openssl/crypto/dsa/
H A Ddsagen.c100 BIO *bio_err=NULL; local
102 if (bio_err == NULL)
103 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
106 dsa=DSA_generate_parameters(1024,seed,20,&counter,&h,cb,bio_err);
109 DSA_print(bio_err,dsa,0);
H A Ddsatest.c135 static BIO *bio_err=NULL; variable
147 if (bio_err == NULL)
148 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
157 BIO_printf(bio_err,"test generation of DSA parameters\n");
159 BN_GENCB_set(&cb, dsa_cb, bio_err);
164 BIO_printf(bio_err,"seed\n");
167 BIO_printf(bio_err,"%02X%02X%02X%02X ",
170 BIO_printf(bio_err,"\ncounter=%d h=%ld\n",counter,h);
172 DSA_print(bio_err,dsa,0);
175 BIO_printf(bio_err,"counte
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/jpake/
H A Djpaketest.c121 BIO *bio_err; local
123 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
187 CRYPTO_mem_leaks(bio_err);
/external/openssl/crypto/jpake/
H A Djpaketest.c121 BIO *bio_err; local
123 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
187 CRYPTO_mem_leaks(bio_err);
/external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/
H A Ddec.c69 BIO *bio_err=NULL; variable
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_notAfte
[all...]
H A Dverify.c69 BIO *bio_err=NULL; variable
86 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
226 BIO_printf(bio_err,"depth=%d %s\n",depth,buf);
229 BIO_printf(bio_err,"verify error:num=%d:%s\n",err,
246 BIO_printf(bio_err,"issuer= %s\n",buf);
250 BIO_printf(bio_err,"notBefore=");
251 ASN1_UTCTIME_print(bio_err,X509_get_notBefore(ctx->current_cert));
252 BIO_printf(bio_err,"\n");
256 BIO_printf(bio_err,"notAfter=");
257 ASN1_UTCTIME_print(bio_err,X509_get_notAfte
[all...]
/external/openssl/crypto/pkcs7/
H A Ddec.c69 BIO *bio_err=NULL; variable
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_notAfte
[all...]
H A Dverify.c69 BIO *bio_err=NULL; variable
86 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
226 BIO_printf(bio_err,"depth=%d %s\n",depth,buf);
229 BIO_printf(bio_err,"verify error:num=%d:%s\n",err,
246 BIO_printf(bio_err,"issuer= %s\n",buf);
250 BIO_printf(bio_err,"notBefore=");
251 ASN1_UTCTIME_print(bio_err,X509_get_notBefore(ctx->current_cert));
252 BIO_printf(bio_err,"\n");
256 BIO_printf(bio_err,"notAfter=");
257 ASN1_UTCTIME_print(bio_err,X509_get_notAfte
[all...]
/external/chromium_org/third_party/openssl/openssl/apps/
H A Dapps.h146 BIO *bio_err=NULL; variable
149 extern BIO *bio_err;
157 extern BIO *bio_err;
H A Dopenssl.c151 BIO *bio_err=NULL; variable
212 /* we cannot use bio_err here */
290 if (bio_err == NULL)
291 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
292 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
348 BIO_printf(bio_err,
357 ERR_print_errors(bio_err);
423 BIO_printf(bio_err,"error in %s\n",argv[0]);
424 (void)BIO_flush(bio_err);
426 BIO_printf(bio_err,"ba
[all...]
/external/openssl/apps/
H A Dapps.h146 BIO *bio_err=NULL; variable
149 extern BIO *bio_err;
157 extern BIO *bio_err;
H A Dopenssl.c151 BIO *bio_err=NULL; variable
212 /* we cannot use bio_err here */
290 if (bio_err == NULL)
291 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
292 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
348 BIO_printf(bio_err,
357 ERR_print_errors(bio_err);
423 BIO_printf(bio_err,"error in %s\n",argv[0]);
424 (void)BIO_flush(bio_err);
426 BIO_printf(bio_err,"ba
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/threads/
H A Dmttest.c134 BIO *bio_err=NULL; variable
201 if (bio_err == NULL)
202 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
282 ERR_print_errors(bio_err);
293 ERR_print_errors(bio_err);
297 ERR_print_errors(bio_err);
315 ERR_print_errors(bio_err);
/external/openssl/crypto/threads/
H A Dmttest.c134 BIO *bio_err=NULL; variable
201 if (bio_err == NULL)
202 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
282 ERR_print_errors(bio_err);
293 ERR_print_errors(bio_err);
297 ERR_print_errors(bio_err);
315 ERR_print_errors(bio_err);
/external/chromium_org/third_party/openssl/openssl/ssl/
H A Dssltest.c295 static BIO *bio_err=NULL; variable
476 /* we cannot use bio_err here */
559 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE|BIO_FP_TEXT);
641 BIO_printf(bio_err,"Not a hex number '%s'\n",*argv);
900 ERR_print_errors(bio_err);
946 BIO_printf(bio_err, "unknown curve name (%s)\n", named_curve);
960 BIO_printf(bio_err, "unable to create curve\n");
985 ERR_print_errors(bio_err);
990 ERR_print_errors(bio_err);
1009 ERR_print_errors(bio_err);
[all...]
/external/openssl/ssl/
H A Dssltest.c295 static BIO *bio_err=NULL; variable
476 /* we cannot use bio_err here */
559 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE|BIO_FP_TEXT);
641 BIO_printf(bio_err,"Not a hex number '%s'\n",*argv);
900 ERR_print_errors(bio_err);
946 BIO_printf(bio_err, "unknown curve name (%s)\n", named_curve);
960 BIO_printf(bio_err, "unable to create curve\n");
985 ERR_print_errors(bio_err);
990 ERR_print_errors(bio_err);
1009 ERR_print_errors(bio_err);
[all...]

Completed in 625 milliseconds