Searched refs:bio_err (Results 101 - 125 of 188) sorted by relevance

12345678

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/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);
173 DSA_print(bio_err,dsa,0);
176 BIO_printf(bio_err,"counte
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/dsa/
H A Ddsagen.c105 BIO *bio_err = NULL; local
107 if (bio_err == NULL)
108 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
111 dsa = DSA_generate_parameters(1024, seed, 20, &counter, &h, cb, bio_err);
114 DSA_print(bio_err, dsa, 0);
H A Ddsatest.c140 static BIO *bio_err = NULL; variable
152 if (bio_err == NULL)
153 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
162 BIO_printf(bio_err, "test generation of DSA parameters\n");
164 BN_GENCB_set(&cb, dsa_cb, bio_err);
171 BIO_printf(bio_err, "seed\n");
173 BIO_printf(bio_err, "%02X%02X%02X%02X ",
176 BIO_printf(bio_err, "\ncounter=%d h=%ld\n", counter, h);
178 DSA_print(bio_err, dsa, 0);
180 BIO_printf(bio_err, "counte
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/dsa/
H A Ddsagen.c105 BIO *bio_err = NULL; local
107 if (bio_err == NULL)
108 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
111 dsa = DSA_generate_parameters(1024, seed, 20, &counter, &h, cb, bio_err);
114 DSA_print(bio_err, dsa, 0);
H A Ddsatest.c140 static BIO *bio_err = NULL; variable
152 if (bio_err == NULL)
153 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
162 BIO_printf(bio_err, "test generation of DSA parameters\n");
164 BN_GENCB_set(&cb, dsa_cb, bio_err);
171 BIO_printf(bio_err, "seed\n");
173 BIO_printf(bio_err, "%02X%02X%02X%02X ",
176 BIO_printf(bio_err, "\ncounter=%d h=%ld\n", counter, h);
178 DSA_print(bio_err, dsa, 0);
180 BIO_printf(bio_err, "counte
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/apps/
H A Dca.c342 if (bio_err == NULL)
343 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
344 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
529 BIO_printf(bio_err, "unknown option %s\n", *argv);
541 BIO_printf(bio_err, "%s", *pp2);
561 BIO_printf(bio_err, "Out of memory\n");
569 BIO_printf(bio_err, "Out of memory\n");
579 BIO_printf(bio_err, "Using configuration from %s\n", configfile);
583 BIO_printf(bio_err, "error loading the config file '%s'\n",
586 BIO_printf(bio_err, "erro
[all...]
H A Dx509.c229 if (bio_err == NULL)
230 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
232 if (!load_config(bio_err, NULL))
300 BIO_printf(bio_err, "bad number of days\n");
356 BIO_printf(bio_err, "Invalid trust object value %s\n", *argv);
367 BIO_printf(bio_err,
478 BIO_printf(bio_err, "use -clrext instead of -crlext\n");
490 BIO_printf(bio_err, "unknown option %s\n", *argv);
501 BIO_printf(bio_err, "%s", *pp);
505 e = setup_engine(bio_err, engin
[all...]
H A Dsess_id.c103 if (bio_err == NULL)
104 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
105 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
141 BIO_printf(bio_err, "unknown option %s\n", *argv);
152 BIO_printf(bio_err, "%s", *pp);
166 BIO_printf(bio_err, "Context too long\n");
195 ERR_print_errors(bio_err);
232 BIO_printf(bio_err, "bad output format specified for outfile\n");
236 BIO_printf(bio_err, "unable to write SSL_SESSION\n");
245 BIO_printf(bio_err, "ba
[all...]
H A Dcrl.c129 if (bio_err == NULL)
130 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
131 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
133 if (!load_config(bio_err, NULL))
235 BIO_printf(bio_err, "unknown option %s\n", *argv);
246 BIO_printf(bio_err, "%s", *pp);
272 BIO_printf(bio_err, "Error initialising X509 store\n");
279 BIO_printf(bio_err, "Error getting CRL issuer certificate\n");
285 BIO_printf(bio_err, "Error getting CRL issuer public key\n");
293 BIO_printf(bio_err, "verif
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/apps/
H A Dca.c342 if (bio_err == NULL)
343 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
344 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
529 BIO_printf(bio_err, "unknown option %s\n", *argv);
541 BIO_printf(bio_err, "%s", *pp2);
561 BIO_printf(bio_err, "Out of memory\n");
569 BIO_printf(bio_err, "Out of memory\n");
579 BIO_printf(bio_err, "Using configuration from %s\n", configfile);
583 BIO_printf(bio_err, "error loading the config file '%s'\n",
586 BIO_printf(bio_err, "erro
[all...]
H A Dx509.c229 if (bio_err == NULL)
230 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
232 if (!load_config(bio_err, NULL))
300 BIO_printf(bio_err, "bad number of days\n");
356 BIO_printf(bio_err, "Invalid trust object value %s\n", *argv);
367 BIO_printf(bio_err,
478 BIO_printf(bio_err, "use -clrext instead of -crlext\n");
490 BIO_printf(bio_err, "unknown option %s\n", *argv);
501 BIO_printf(bio_err, "%s", *pp);
505 e = setup_engine(bio_err, engin
[all...]
H A Dsess_id.c103 if (bio_err == NULL)
104 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
105 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
141 BIO_printf(bio_err, "unknown option %s\n", *argv);
152 BIO_printf(bio_err, "%s", *pp);
166 BIO_printf(bio_err, "Context too long\n");
195 ERR_print_errors(bio_err);
232 BIO_printf(bio_err, "bad output format specified for outfile\n");
236 BIO_printf(bio_err, "unable to write SSL_SESSION\n");
245 BIO_printf(bio_err, "ba
[all...]
H A Dcrl.c129 if (bio_err == NULL)
130 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
131 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
133 if (!load_config(bio_err, NULL))
235 BIO_printf(bio_err, "unknown option %s\n", *argv);
246 BIO_printf(bio_err, "%s", *pp);
272 BIO_printf(bio_err, "Error initialising X509 store\n");
279 BIO_printf(bio_err, "Error getting CRL issuer certificate\n");
285 BIO_printf(bio_err, "Error getting CRL issuer public key\n");
293 BIO_printf(bio_err, "verif
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/test/
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);
173 DSA_print(bio_err,dsa,0);
176 BIO_printf(bio_err,"counte
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/apps/
H A Ds_client.c185 BIO_printf(bio_err,"usage: s_client args\n");
186 BIO_printf(bio_err,"\n");
187 BIO_printf(bio_err," -host host - use -connect instead\n");
188 BIO_printf(bio_err," -port port - use -connect instead\n");
189 BIO_printf(bio_err," -connect host:port - who to connect to (default is %s:%s)\n",SSL_HOST_NAME,PORT_STR);
191 BIO_printf(bio_err," -verify depth - turn on peer certificate verification\n");
192 BIO_printf(bio_err," -cert arg - certificate file to use, PEM format assumed\n");
193 BIO_printf(bio_err," -certform arg - certificate format (PEM or DER) PEM default\n");
194 BIO_printf(bio_err," -key arg - Private key file to use, in cert file if\n");
195 BIO_printf(bio_err," no
[all...]
H A Dca.c338 if (bio_err == NULL)
339 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
340 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
543 BIO_printf(bio_err,"unknown option %s\n",*argv);
554 BIO_printf(bio_err,"%s",*pp);
583 BIO_printf(bio_err,"Using configuration from %s\n",configfile);
588 BIO_printf(bio_err,"error loading the config file '%s'\n",
591 BIO_printf(bio_err,"error on line %ld of config file '%s'\n"
601 if (!load_config(bio_err, conf))
605 e = setup_engine(bio_err, engin
[all...]
H A Dopenssl.c149 BIO *bio_err=NULL; variable
210 /* we cannot use bio_err here */
235 if (bio_err == NULL)
236 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
237 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
340 BIO_printf(bio_err,"error in %s\n",argv[0]);
341 (void)BIO_flush(bio_err);
343 BIO_printf(bio_err,"bad exit\n");
358 CRYPTO_mem_leaks(bio_err);
359 if (bio_err !
[all...]
H A Dsess_id.c102 if (bio_err == NULL)
103 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
104 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
147 BIO_printf(bio_err,"unknown option %s\n",*argv);
159 BIO_printf(bio_err,"%s",*pp);
172 BIO_printf(bio_err,"Context too long\n");
204 ERR_print_errors(bio_err);
248 BIO_printf(bio_err,"bad output format specified for outfile\n");
252 BIO_printf(bio_err,"unable to write SSL_SESSION\n");
263 BIO_printf(bio_err,"ba
[all...]
H A Dx509.c205 if (bio_err == NULL)
206 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
208 if (!load_config(bio_err, NULL))
333 BIO_printf(bio_err,
346 BIO_printf(bio_err,
438 BIO_printf(bio_err,"use -clrext instead of -crlext\n");
451 BIO_printf(bio_err,"unknown option %s\n",*argv);
463 BIO_printf(bio_err,"%s",*pp);
468 e = setup_engine(bio_err, engine, 0);
472 app_RAND_load_file(NULL, bio_err,
[all...]
H A Dcrl.c122 if (bio_err == NULL)
123 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
124 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
126 if (!load_config(bio_err, NULL))
216 BIO_printf(bio_err,"unknown option %s\n",*argv);
228 BIO_printf(bio_err,"%s",*pp);
250 BIO_printf(bio_err,
258 BIO_printf(bio_err,
265 BIO_printf(bio_err,
272 if(i == 0) BIO_printf(bio_err, "verif
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/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...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/threads/
H A Dmttest.c127 BIO *bio_err = NULL; variable
164 BIO_printf(bio_err, "usage: ssltest [args ...]\n");
165 BIO_printf(bio_err, "\n");
166 BIO_printf(bio_err, " -server_auth - check server certificate\n");
167 BIO_printf(bio_err, " -client_auth - do client authentication\n");
168 BIO_printf(bio_err, " -v - more output\n");
169 BIO_printf(bio_err, " -CApath arg - PEM format directory of CA's\n");
170 BIO_printf(bio_err, " -CAfile arg - PEM format file of CA's\n");
171 BIO_printf(bio_err, " -threads arg - number of threads\n");
172 BIO_printf(bio_err, "
330 lh_SSL_SESSION_stats_bio(SSL_CTX_sessions(s_ctx), bio_err); local
334 lh_SSL_SESSION_node_usage_stats_bio(SSL_CTX_sessions(s_ctx), bio_err); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/threads/
H A Dmttest.c127 BIO *bio_err = NULL; variable
164 BIO_printf(bio_err, "usage: ssltest [args ...]\n");
165 BIO_printf(bio_err, "\n");
166 BIO_printf(bio_err, " -server_auth - check server certificate\n");
167 BIO_printf(bio_err, " -client_auth - do client authentication\n");
168 BIO_printf(bio_err, " -v - more output\n");
169 BIO_printf(bio_err, " -CApath arg - PEM format directory of CA's\n");
170 BIO_printf(bio_err, " -CAfile arg - PEM format file of CA's\n");
171 BIO_printf(bio_err, " -threads arg - number of threads\n");
172 BIO_printf(bio_err, "
330 lh_SSL_SESSION_stats_bio(SSL_CTX_sessions(s_ctx), bio_err); local
334 lh_SSL_SESSION_node_usage_stats_bio(SSL_CTX_sessions(s_ctx), bio_err); local
[all...]

Completed in 177 milliseconds

12345678