Searched refs:bio_err (Results 51 - 75 of 188) sorted by relevance

12345678

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/apps/
H A Dgendsa.c94 if (bio_err == NULL)
95 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
96 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
98 if (!load_config(bio_err, NULL))
168 BIO_printf(bio_err, "usage: gendsa [args] dsaparam-file\n");
169 BIO_printf(bio_err, " -out file - output the key to 'file'\n");
171 BIO_printf(bio_err,
173 BIO_printf(bio_err,
177 BIO_printf(bio_err,
181 BIO_printf(bio_err, "
[all...]
H A Dasn1pars.c108 if (bio_err == NULL)
109 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
110 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
112 if (!load_config(bio_err, NULL))
119 BIO_printf(bio_err, "Memory allocation failure\n");
174 BIO_printf(bio_err, "unknown option %s\n", *argv);
184 BIO_printf(bio_err, "%s [options] <infile\n", prog);
185 BIO_printf(bio_err, "where options are\n");
186 BIO_printf(bio_err, " -inform arg input format - one of DER PEM\n");
187 BIO_printf(bio_err, "
[all...]
H A Dpkeyutl.c114 if (!bio_err)
115 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
117 if (!load_config(bio_err, NULL))
169 e = setup_engine(bio_err, *(++argv), 0);
202 BIO_puts(bio_err, "out of memory\n");
223 BIO_puts(bio_err, "Error initializing context\n");
224 ERR_print_errors(bio_err);
227 if (peerkey != NULL && !setup_peer(bio_err, ctx, peerform, peerkey, e)) {
228 BIO_puts(bio_err, "Error setting up peer key\n");
229 ERR_print_errors(bio_err);
[all...]
H A Decparam.c141 if (bio_err == NULL)
142 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
143 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
145 if (!load_config(bio_err, NULL))
224 BIO_printf(bio_err, "unknown option %s\n", *argv);
234 BIO_printf(bio_err, "%s [options] <infile >outfile\n", prog);
235 BIO_printf(bio_err, "where options are\n");
236 BIO_printf(bio_err, " -inform arg input format - "
238 BIO_printf(bio_err, " -outform arg output format - "
240 BIO_printf(bio_err, "
[all...]
H A Dprime.c72 if (bio_err == NULL)
73 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
74 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
96 BIO_printf(bio_err, "Unknown option '%s'\n", *argv);
104 BIO_printf(bio_err, "No prime specified\n");
122 BIO_printf(bio_err, "Specifiy the number of bits.\n");
147 BIO_printf(bio_err, "options are\n");
148 BIO_printf(bio_err, "%-14s hex\n", "-hex");
149 BIO_printf(bio_err, "%-14s number of checks\n", "-checks <n>");
H A Ddh.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);
107 if (!load_config(bio_err, NULL))
155 BIO_printf(bio_err, "unknown option %s\n", *argv);
165 BIO_printf(bio_err, "%s [options] <infile >outfile\n", prog);
166 BIO_printf(bio_err, "where options are\n");
167 BIO_printf(bio_err, " -inform arg input format - one of DER PEM\n");
168 BIO_printf(bio_err,
170 BIO_printf(bio_err, "
[all...]
H A Dpkcs7.c99 if (bio_err == NULL)
100 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
101 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
103 if (!load_config(bio_err, NULL))
147 BIO_printf(bio_err, "unknown option %s\n", *argv);
157 BIO_printf(bio_err, "%s [options] <infile >outfile\n", prog);
158 BIO_printf(bio_err, "where options are\n");
159 BIO_printf(bio_err, " -inform arg input format - DER or PEM\n");
160 BIO_printf(bio_err, " -outform arg output format - DER or PEM\n");
161 BIO_printf(bio_err, "
[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))
152 BIO_printf(bio_err, "Usage: rand [options] num\n");
153 BIO_printf(bio_err, "where options are\n");
154 BIO_printf(bio_err, "-out file - write to file\n");
156 BIO_printf(bio_err,
159 BIO_printf(bio_err, "-rand file%cfile%c... - seed PRNG from files\n",
161 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);
241 BIO_printf(bio_err, "Can't find keygen engine %s\n", *argv);
371 BIO_printf(bio_err, "unknown option %s\n", *argv);
381 BIO_printf(bio_err, "%s [options] <infile >outfile\n", prog);
382 BIO_printf(bio_err, "where options are\n");
383 BIO_printf(bio_err, " -inform arg input format - DER or PEM\n");
384 BIO_printf(bio_err, " -outform arg output format - DER or PEM\n");
385 BIO_printf(bio_err, "
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/apps/
H A Dgendsa.c94 if (bio_err == NULL)
95 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
96 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
98 if (!load_config(bio_err, NULL))
168 BIO_printf(bio_err, "usage: gendsa [args] dsaparam-file\n");
169 BIO_printf(bio_err, " -out file - output the key to 'file'\n");
171 BIO_printf(bio_err,
173 BIO_printf(bio_err,
177 BIO_printf(bio_err,
181 BIO_printf(bio_err, "
[all...]
H A Dasn1pars.c108 if (bio_err == NULL)
109 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
110 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
112 if (!load_config(bio_err, NULL))
119 BIO_printf(bio_err, "Memory allocation failure\n");
174 BIO_printf(bio_err, "unknown option %s\n", *argv);
184 BIO_printf(bio_err, "%s [options] <infile\n", prog);
185 BIO_printf(bio_err, "where options are\n");
186 BIO_printf(bio_err, " -inform arg input format - one of DER PEM\n");
187 BIO_printf(bio_err, "
[all...]
H A Dpkeyutl.c114 if (!bio_err)
115 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
117 if (!load_config(bio_err, NULL))
169 e = setup_engine(bio_err, *(++argv), 0);
202 BIO_puts(bio_err, "out of memory\n");
223 BIO_puts(bio_err, "Error initializing context\n");
224 ERR_print_errors(bio_err);
227 if (peerkey != NULL && !setup_peer(bio_err, ctx, peerform, peerkey, e)) {
228 BIO_puts(bio_err, "Error setting up peer key\n");
229 ERR_print_errors(bio_err);
[all...]
H A Decparam.c141 if (bio_err == NULL)
142 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
143 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
145 if (!load_config(bio_err, NULL))
224 BIO_printf(bio_err, "unknown option %s\n", *argv);
234 BIO_printf(bio_err, "%s [options] <infile >outfile\n", prog);
235 BIO_printf(bio_err, "where options are\n");
236 BIO_printf(bio_err, " -inform arg input format - "
238 BIO_printf(bio_err, " -outform arg output format - "
240 BIO_printf(bio_err, "
[all...]
H A Dprime.c72 if (bio_err == NULL)
73 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
74 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
96 BIO_printf(bio_err, "Unknown option '%s'\n", *argv);
104 BIO_printf(bio_err, "No prime specified\n");
122 BIO_printf(bio_err, "Specifiy the number of bits.\n");
147 BIO_printf(bio_err, "options are\n");
148 BIO_printf(bio_err, "%-14s hex\n", "-hex");
149 BIO_printf(bio_err, "%-14s number of checks\n", "-checks <n>");
H A Ddh.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);
107 if (!load_config(bio_err, NULL))
155 BIO_printf(bio_err, "unknown option %s\n", *argv);
165 BIO_printf(bio_err, "%s [options] <infile >outfile\n", prog);
166 BIO_printf(bio_err, "where options are\n");
167 BIO_printf(bio_err, " -inform arg input format - one of DER PEM\n");
168 BIO_printf(bio_err,
170 BIO_printf(bio_err, "
[all...]
H A Dpkcs7.c99 if (bio_err == NULL)
100 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
101 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
103 if (!load_config(bio_err, NULL))
147 BIO_printf(bio_err, "unknown option %s\n", *argv);
157 BIO_printf(bio_err, "%s [options] <infile >outfile\n", prog);
158 BIO_printf(bio_err, "where options are\n");
159 BIO_printf(bio_err, " -inform arg input format - DER or PEM\n");
160 BIO_printf(bio_err, " -outform arg output format - DER or PEM\n");
161 BIO_printf(bio_err, "
[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))
152 BIO_printf(bio_err, "Usage: rand [options] num\n");
153 BIO_printf(bio_err, "where options are\n");
154 BIO_printf(bio_err, "-out file - write to file\n");
156 BIO_printf(bio_err,
159 BIO_printf(bio_err, "-rand file%cfile%c... - seed PRNG from files\n",
161 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);
241 BIO_printf(bio_err, "Can't find keygen engine %s\n", *argv);
371 BIO_printf(bio_err, "unknown option %s\n", *argv);
381 BIO_printf(bio_err, "%s [options] <infile >outfile\n", prog);
382 BIO_printf(bio_err, "where options are\n");
383 BIO_printf(bio_err, " -inform arg input format - DER or PEM\n");
384 BIO_printf(bio_err, " -outform arg output format - DER or PEM\n");
385 BIO_printf(bio_err, "
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/apps/
H A Dasn1pars.c106 if (bio_err == NULL)
107 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
108 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
110 if (!load_config(bio_err, NULL))
118 BIO_printf(bio_err,"Memory allocation failure\n");
186 BIO_printf(bio_err,"unknown option %s\n",*argv);
197 BIO_printf(bio_err,"%s [options] <infile\n",prog);
198 BIO_printf(bio_err,"where options are\n");
199 BIO_printf(bio_err," -inform arg input format - one of DER PEM\n");
200 BIO_printf(bio_err,"
[all...]
H A Ddsaparam.c133 if (bio_err == NULL)
134 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
135 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
137 if (!load_config(bio_err, NULL))
209 BIO_printf(bio_err,"unknown option %s\n",*argv);
220 BIO_printf(bio_err,"%s [options] [bits] <infile >outfile\n",prog);
221 BIO_printf(bio_err,"where options are\n");
222 BIO_printf(bio_err," -inform arg input format - DER or PEM\n");
223 BIO_printf(bio_err," -outform arg output format - DER or PEM\n");
224 BIO_printf(bio_err,"
[all...]
H A Ddgst.c114 BIO_printf(bio_err,"out of memory\n");
117 if (bio_err == NULL)
118 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
119 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
121 if (!load_config(bio_err, NULL))
211 BIO_printf(bio_err, "No signature to verify: use the -signature option\n");
218 BIO_printf(bio_err,"unknown option '%s'\n",*argv);
219 BIO_printf(bio_err,"options are\n");
220 BIO_printf(bio_err,"-c to output the digest with separating colons\n");
221 BIO_printf(bio_err,"
[all...]
H A Decparam.c143 if (bio_err == NULL)
144 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
145 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
147 if (!load_config(bio_err, NULL))
242 BIO_printf(bio_err,"unknown option %s\n",*argv);
253 BIO_printf(bio_err, "%s [options] <infile >outfile\n",prog);
254 BIO_printf(bio_err, "where options are\n");
255 BIO_printf(bio_err, " -inform arg input format - "
257 BIO_printf(bio_err, " -outform arg output format - "
259 BIO_printf(bio_err, "
[all...]
H A Docsp.c137 if (bio_err == NULL) bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
139 if (!load_config(bio_err, NULL))
164 BIO_printf(bio_err, "Error parsing URL\n");
306 BIO_printf(bio_err,
322 BIO_printf(bio_err,
372 issuer = load_cert(bio_err, *args, FORMAT_PEM,
384 cert = load_cert(bio_err, *args, FORMAT_PEM,
432 BIO_printf(bio_err,
450 BIO_printf(bio_err,
[all...]
H A Dcrl2p7.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);
149 BIO_printf(bio_err,"unknown option %s\n",*argv);
160 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
161 BIO_printf(bio_err,"where options are\n");
162 BIO_printf(bio_err," -inform arg input format - DER or PEM\n");
163 BIO_printf(bio_err," -outform arg output format - DER or PEM\n");
164 BIO_printf(bio_err," -in arg input file\n");
165 BIO_printf(bio_err,"
[all...]
H A Ddh.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))
162 BIO_printf(bio_err,"unknown option %s\n",*argv);
173 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
174 BIO_printf(bio_err,"where options are\n");
175 BIO_printf(bio_err," -inform arg input format - one of DER PEM\n");
176 BIO_printf(bio_err," -outform arg output format - one of DER PEM\n");
177 BIO_printf(bio_err,"
[all...]

Completed in 90 milliseconds

12345678