Searched refs:bio_err (Results 76 - 100 of 188) sorted by relevance

12345678

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/apps/
H A Denc.c137 if (bio_err == NULL)
138 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
139 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
141 if (!load_config(bio_err, NULL))
161 BIO_printf(bio_err, "%s is an unknown cipher\n", pname);
234 BIO_printf(bio_err, "unable to read key from '%s'\n", file);
239 BIO_printf(bio_err, "unable to read key from '%s'\n", file);
249 BIO_printf(bio_err, "zero length password\n");
277 BIO_printf(bio_err, "unknown option '%s'\n", *argv);
279 BIO_printf(bio_err, "option
[all...]
H A Dsrp.c151 BIO_printf(bio_err, " %d = \"%s\"\n", j, pp[j]);
182 BIO_printf(bio_err, "Memory allocation failure\n");
203 BIO_printf(bio_err, "variable lookup failed for %s::%s\n", name, tag);
313 if (bio_err == NULL)
314 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
315 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
369 BIO_printf(bio_err, "unknown option %s\n", *argv);
380 BIO_printf(bio_err,
385 BIO_printf(bio_err,
390 BIO_printf(bio_err,
[all...]
H A Dcrl2p7.c105 if (bio_err == NULL)
106 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
107 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
148 BIO_printf(bio_err, "unknown option %s\n", *argv);
158 BIO_printf(bio_err, "%s [options] <infile >outfile\n", prog);
159 BIO_printf(bio_err, "where options are\n");
160 BIO_printf(bio_err, " -inform arg input format - DER or PEM\n");
161 BIO_printf(bio_err, " -outform arg output format - DER or PEM\n");
162 BIO_printf(bio_err, " -in arg input file\n");
163 BIO_printf(bio_err, "
[all...]
H A Dpkcs12.c139 if (bio_err == NULL)
140 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
142 if (!load_config(bio_err, NULL))
227 if (!set_pbe(bio_err, &cert_pbe, *++args))
230 if (!set_pbe(bio_err, &key_pbe, *++args))
332 BIO_printf(bio_err, "Usage: pkcs12 [options]\n");
333 BIO_printf(bio_err, "where options are\n");
334 BIO_printf(bio_err, "-export output PKCS12 file\n");
335 BIO_printf(bio_err, "-chain add certificate chain\n");
336 BIO_printf(bio_err, "
[all...]
H A Dcms.c164 if (bio_err == NULL) {
165 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
166 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
169 if (!load_config(bio_err, NULL))
322 BIO_printf(bio_err, "Invalid key %s\n", *args);
333 BIO_printf(bio_err, "Invalid id %s\n", *args);
348 BIO_printf(bio_err, "Invalid OID %s\n", *args);
404 cert = load_cert(bio_err, *++args, FORMAT_PEM,
421 BIO_printf(bio_err, "Unknown digest %s\n", *args);
430 BIO_puts(bio_err, "Illega
[all...]
H A Dverify.c105 if (bio_err == NULL)
106 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
107 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
109 if (!load_config(bio_err, NULL))
124 } else if (args_verify(&argv, &argc, &badarg, bio_err, &vpm)) {
164 e = setup_engine(bio_err, engine, 0);
176 BIO_printf(bio_err, "Error loading file %s\n", CAfile);
177 ERR_print_errors(bio_err);
189 BIO_printf(bio_err, "Error loading directory %s\n", CApath);
190 ERR_print_errors(bio_err);
[all...]
H A Ds_client.c270 BIO_printf(bio_err, "Could not convert PSK key '%s' to BIGNUM\n",
278 BIO_printf(bio_err,
296 BIO_printf(bio_err, "Error in PSK client callback\n");
303 BIO_printf(bio_err, "usage: s_client args\n");
304 BIO_printf(bio_err, "\n");
305 BIO_printf(bio_err, " -host host - use -connect instead\n");
306 BIO_printf(bio_err, " -port port - use -connect instead\n");
307 BIO_printf(bio_err,
310 BIO_printf(bio_err,
312 BIO_printf(bio_err,
[all...]
H A Docsp.c178 if (bio_err == NULL)
179 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
181 if (!load_config(bio_err, NULL))
200 BIO_printf(bio_err, "Illegal timeout value %s\n", *args);
216 BIO_printf(bio_err, "Error parsing URL\n");
329 } else if (args_verify(&args, NULL, &badarg, bio_err, &vpm)) {
338 BIO_printf(bio_err,
349 BIO_printf(bio_err, "Illegal validity age %s\n", *args);
382 issuer = load_cert(bio_err, *args, FORMAT_PEM,
392 cert = load_cert(bio_err, *arg
[all...]
H A Ds_server.c363 BIO_printf(bio_err, "Error: client did not send PSK identity\n");
382 BIO_printf(bio_err, "Could not convert PSK key '%s' to BIGNUM\n",
389 BIO_printf(bio_err,
408 BIO_printf(bio_err, "Error in PSK server callback\n");
436 BIO_printf(bio_err, "SRP username = \"%s\"\n", p->login);
441 BIO_printf(bio_err, "User %s doesn't exist\n", p->login);
451 BIO_printf(bio_err,
502 BIO_printf(bio_err, "usage: s_server [args ...]\n");
503 BIO_printf(bio_err, "\n");
504 BIO_printf(bio_err,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/apps/
H A Denc.c137 if (bio_err == NULL)
138 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
139 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
141 if (!load_config(bio_err, NULL))
161 BIO_printf(bio_err, "%s is an unknown cipher\n", pname);
234 BIO_printf(bio_err, "unable to read key from '%s'\n", file);
239 BIO_printf(bio_err, "unable to read key from '%s'\n", file);
249 BIO_printf(bio_err, "zero length password\n");
277 BIO_printf(bio_err, "unknown option '%s'\n", *argv);
279 BIO_printf(bio_err, "option
[all...]
H A Dsrp.c151 BIO_printf(bio_err, " %d = \"%s\"\n", j, pp[j]);
182 BIO_printf(bio_err, "Memory allocation failure\n");
203 BIO_printf(bio_err, "variable lookup failed for %s::%s\n", name, tag);
313 if (bio_err == NULL)
314 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
315 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
369 BIO_printf(bio_err, "unknown option %s\n", *argv);
380 BIO_printf(bio_err,
385 BIO_printf(bio_err,
390 BIO_printf(bio_err,
[all...]
H A Dcrl2p7.c105 if (bio_err == NULL)
106 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
107 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
148 BIO_printf(bio_err, "unknown option %s\n", *argv);
158 BIO_printf(bio_err, "%s [options] <infile >outfile\n", prog);
159 BIO_printf(bio_err, "where options are\n");
160 BIO_printf(bio_err, " -inform arg input format - DER or PEM\n");
161 BIO_printf(bio_err, " -outform arg output format - DER or PEM\n");
162 BIO_printf(bio_err, " -in arg input file\n");
163 BIO_printf(bio_err, "
[all...]
H A Dpkcs12.c139 if (bio_err == NULL)
140 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
142 if (!load_config(bio_err, NULL))
227 if (!set_pbe(bio_err, &cert_pbe, *++args))
230 if (!set_pbe(bio_err, &key_pbe, *++args))
332 BIO_printf(bio_err, "Usage: pkcs12 [options]\n");
333 BIO_printf(bio_err, "where options are\n");
334 BIO_printf(bio_err, "-export output PKCS12 file\n");
335 BIO_printf(bio_err, "-chain add certificate chain\n");
336 BIO_printf(bio_err, "
[all...]
H A Dcms.c164 if (bio_err == NULL) {
165 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
166 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
169 if (!load_config(bio_err, NULL))
322 BIO_printf(bio_err, "Invalid key %s\n", *args);
333 BIO_printf(bio_err, "Invalid id %s\n", *args);
348 BIO_printf(bio_err, "Invalid OID %s\n", *args);
404 cert = load_cert(bio_err, *++args, FORMAT_PEM,
421 BIO_printf(bio_err, "Unknown digest %s\n", *args);
430 BIO_puts(bio_err, "Illega
[all...]
H A Dverify.c105 if (bio_err == NULL)
106 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
107 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
109 if (!load_config(bio_err, NULL))
124 } else if (args_verify(&argv, &argc, &badarg, bio_err, &vpm)) {
164 e = setup_engine(bio_err, engine, 0);
176 BIO_printf(bio_err, "Error loading file %s\n", CAfile);
177 ERR_print_errors(bio_err);
189 BIO_printf(bio_err, "Error loading directory %s\n", CApath);
190 ERR_print_errors(bio_err);
[all...]
H A Ds_client.c270 BIO_printf(bio_err, "Could not convert PSK key '%s' to BIGNUM\n",
278 BIO_printf(bio_err,
296 BIO_printf(bio_err, "Error in PSK client callback\n");
303 BIO_printf(bio_err, "usage: s_client args\n");
304 BIO_printf(bio_err, "\n");
305 BIO_printf(bio_err, " -host host - use -connect instead\n");
306 BIO_printf(bio_err, " -port port - use -connect instead\n");
307 BIO_printf(bio_err,
310 BIO_printf(bio_err,
312 BIO_printf(bio_err,
[all...]
H A Docsp.c178 if (bio_err == NULL)
179 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
181 if (!load_config(bio_err, NULL))
200 BIO_printf(bio_err, "Illegal timeout value %s\n", *args);
216 BIO_printf(bio_err, "Error parsing URL\n");
329 } else if (args_verify(&args, NULL, &badarg, bio_err, &vpm)) {
338 BIO_printf(bio_err,
349 BIO_printf(bio_err, "Illegal validity age %s\n", *args);
382 issuer = load_cert(bio_err, *args, FORMAT_PEM,
392 cert = load_cert(bio_err, *arg
[all...]
H A Ds_server.c363 BIO_printf(bio_err, "Error: client did not send PSK identity\n");
382 BIO_printf(bio_err, "Could not convert PSK key '%s' to BIGNUM\n",
389 BIO_printf(bio_err,
408 BIO_printf(bio_err, "Error in PSK server callback\n");
436 BIO_printf(bio_err, "SRP username = \"%s\"\n", p->login);
441 BIO_printf(bio_err, "User %s doesn't exist\n", p->login);
451 BIO_printf(bio_err,
502 BIO_printf(bio_err, "usage: s_server [args ...]\n");
503 BIO_printf(bio_err, "\n");
504 BIO_printf(bio_err,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/apps/
H A Ds_cb.c138 BIO_printf(bio_err,"depth=%d %s\n",depth,buf);
141 BIO_printf(bio_err,"verify error:num=%d:%s\n",err,
158 BIO_printf(bio_err,"issuer= %s\n",buf);
162 BIO_printf(bio_err,"notBefore=");
163 ASN1_TIME_print(bio_err,X509_get_notBefore(ctx->current_cert));
164 BIO_printf(bio_err,"\n");
168 BIO_printf(bio_err,"notAfter=");
169 ASN1_TIME_print(bio_err,X509_get_notAfter(ctx->current_cert));
170 BIO_printf(bio_err,"\n");
173 BIO_printf(bio_err,"verif
[all...]
H A Drand.c95 if (bio_err == NULL)
96 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
97 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE|BIO_FP_TEXT);
99 if (!load_config(bio_err, NULL))
156 BIO_printf(bio_err, "Usage: rand [options] num\n");
157 BIO_printf(bio_err, "where options are\n");
158 BIO_printf(bio_err, "-out file - write to file\n");
160 BIO_printf(bio_err, "-engine e - use engine e, possibly a hardware device.\n");
162 BIO_printf(bio_err, "-rand file%cfile%c... - seed PRNG from files\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
163 BIO_printf(bio_err, "
[all...]
H A Dreq.c209 if (bio_err == NULL)
210 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
211 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
327 BIO_printf(bio_err,"unable to load DSA parameters from file\n");
338 BIO_printf(bio_err,"Certificate does not contain DSA parameters\n");
372 BIO_printf(bio_err,"unable to load EC parameters from file\n");
384 BIO_printf(bio_err,"Certificate does not contain EC parameters\n");
487 BIO_printf(bio_err,"unknown option %s\n",*argv);
498 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
499 BIO_printf(bio_err,"wher
[all...]
H A Dpkcs7.c101 if (bio_err == NULL)
102 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
103 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
105 if (!load_config(bio_err, NULL))
153 BIO_printf(bio_err,"unknown option %s\n",*argv);
164 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
165 BIO_printf(bio_err,"where options are\n");
166 BIO_printf(bio_err," -inform arg input format - DER or PEM\n");
167 BIO_printf(bio_err," -outform arg output format - DER or PEM\n");
168 BIO_printf(bio_err,"
[all...]
H A Dpkcs12.c131 if (bio_err == NULL ) bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
133 if (!load_config(bio_err, NULL))
186 BIO_printf(bio_err,
199 BIO_printf(bio_err,
285 BIO_printf (bio_err, "Usage: pkcs12 [options]\n");
286 BIO_printf (bio_err, "where options are\n");
287 BIO_printf (bio_err, "-export output PKCS12 file\n");
288 BIO_printf (bio_err, "-chain add certificate chain\n");
289 BIO_printf (bio_err, "
[all...]
H A Dverify.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);
106 if (!load_config(bio_err, NULL))
125 else if (args_verify(&argv, &argc, &badarg, bio_err,
165 e = setup_engine(bio_err, engine, 0);
176 BIO_printf(bio_err, "Error loading file %s\n", CAfile);
177 ERR_print_errors(bio_err);
187 BIO_printf(bio_err, "Error loading directory %s\n", CApath);
188 ERR_print_errors(bio_err);
[all...]
H A Ds_server.c308 BIO_printf(bio_err,"usage: s_server [args ...]\n");
309 BIO_printf(bio_err,"\n");
310 BIO_printf(bio_err," -accept arg - port to accept on (default is %d)\n",PORT);
311 BIO_printf(bio_err," -context arg - set session ID context\n");
312 BIO_printf(bio_err," -verify arg - turn on peer certificate verification\n");
313 BIO_printf(bio_err," -Verify arg - turn on peer certificate verification, must have a cert.\n");
314 BIO_printf(bio_err," -cert arg - certificate file to use\n");
315 BIO_printf(bio_err," (default is %s)\n",TEST_CERT);
316 BIO_printf(bio_err," -certform arg - certificate format (PEM or DER) PEM default\n");
317 BIO_printf(bio_err,"
[all...]

Completed in 123 milliseconds

12345678