• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/apps/

Lines Matching refs:bio_err

94     if (bio_err == NULL)
95 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
97 if (!load_config(bio_err, NULL))
121 e = setup_engine(bio_err, *(++args), 0);
130 if (!init_keygen_file(bio_err, &ctx, *args, e))
141 if (!init_gen_str(bio_err, &ctx, *(++args), e, do_param))
147 BIO_puts(bio_err, "No keytype specified\n");
150 BIO_puts(bio_err, "parameter setting error\n");
151 ERR_print_errors(bio_err);
163 BIO_printf(bio_err, "Unknown cipher %s\n", *args + 1);
177 BIO_printf(bio_err, "Usage: genpkey [options]\n");
178 BIO_printf(bio_err, "where options may be\n");
179 BIO_printf(bio_err, "-out file output file\n");
180 BIO_printf(bio_err,
182 BIO_printf(bio_err,
184 BIO_printf(bio_err,
187 BIO_printf(bio_err,
190 BIO_printf(bio_err, "-paramfile file parameters file\n");
191 BIO_printf(bio_err, "-algorithm alg the public key algorithm\n");
192 BIO_printf(bio_err,
195 BIO_printf(bio_err,
197 BIO_printf(bio_err, "-text print the in text\n");
198 BIO_printf(bio_err,
203 if (!app_passwd(bio_err, passarg, NULL, &pass, NULL)) {
204 BIO_puts(bio_err, "Error getting password\n");
210 BIO_printf(bio_err, "Can't open output file %s\n", outfile);
224 EVP_PKEY_CTX_set_app_data(ctx, bio_err);
228 BIO_puts(bio_err, "Error generating parameters\n");
229 ERR_print_errors(bio_err);
234 BIO_puts(bio_err, "Error generating key\n");
235 ERR_print_errors(bio_err);
247 BIO_printf(bio_err, "Bad format specified for key\n");
252 BIO_puts(bio_err, "Error writing key\n");
253 ERR_print_errors(bio_err);
263 BIO_puts(bio_err, "Error printing key\n");
264 ERR_print_errors(bio_err);
305 BIO_printf(bio_err, "Error reading parameter file %s\n", file);
350 BIO_printf(bio_err, "Algorithm %s not found\n", algname);