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

/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/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/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/boringssl/src/crypto/dsa/
H A Ddsa_test.c99 static BIO *bio_err = NULL; variable
113 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
133 BIO_printf(bio_err, "counter should be 105\n");
137 BIO_printf(bio_err, "h should be 2\n");
144 BIO_printf(bio_err, "q value is wrong\n");
151 BIO_printf(bio_err, "p value is wrong\n");
158 BIO_printf(bio_err, "g value is wrong\n");
167 BIO_printf(bio_err, "verification failure\n");
172 BIO_print_errors(bio_err);
178 BIO_free(bio_err);
[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.c152 BIO *bio_err=NULL; variable
213 /* we cannot use bio_err here */
291 if (bio_err == NULL)
292 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
293 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
349 BIO_printf(bio_err,
358 ERR_print_errors(bio_err);
424 BIO_printf(bio_err,"error in %s\n",argv[0]);
425 (void)BIO_flush(bio_err);
427 BIO_printf(bio_err,"ba
[all...]
/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/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);
906 ERR_print_errors(bio_err);
952 BIO_printf(bio_err, "unknown curve name (%s)\n", named_curve);
966 BIO_printf(bio_err, "unable to create curve\n");
991 ERR_print_errors(bio_err);
996 ERR_print_errors(bio_err);
1015 ERR_print_errors(bio_err);
[all...]

Completed in 185 milliseconds