Lines Matching refs:bio_err
122 if (bio_err == NULL) in MAIN()
123 if ((bio_err=BIO_new(BIO_s_file())) != NULL) in MAIN()
124 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT); in MAIN()
126 if (!load_config(bio_err, NULL)) in MAIN()
202 BIO_printf(bio_err,"unknown option %s\n",*argv); in MAIN()
213 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog); in MAIN()
214 BIO_printf(bio_err,"where options are\n"); in MAIN()
215 BIO_printf(bio_err," -inform arg input format - one of DER NET PEM\n"); in MAIN()
216 BIO_printf(bio_err," -outform arg output format - one of DER NET PEM\n"); in MAIN()
217 BIO_printf(bio_err," -in arg input file\n"); in MAIN()
218 BIO_printf(bio_err," -sgckey Use IIS SGC key format\n"); in MAIN()
219 BIO_printf(bio_err," -passin arg input file pass phrase source\n"); in MAIN()
220 BIO_printf(bio_err," -out arg output file\n"); in MAIN()
221 BIO_printf(bio_err," -passout arg output file pass phrase source\n"); in MAIN()
222 BIO_printf(bio_err," -des encrypt PEM output with cbc des\n"); in MAIN()
223 BIO_printf(bio_err," -des3 encrypt PEM output with ede cbc des using 168 bit key\n"); in MAIN()
225 BIO_printf(bio_err," -idea encrypt PEM output with cbc idea\n"); in MAIN()
228 BIO_printf(bio_err," -seed encrypt PEM output with cbc seed\n"); in MAIN()
231 BIO_printf(bio_err," -aes128, -aes192, -aes256\n"); in MAIN()
232 BIO_printf(bio_err," encrypt PEM output with cbc aes\n"); in MAIN()
235 BIO_printf(bio_err," -camellia128, -camellia192, -camellia256\n"); in MAIN()
236 BIO_printf(bio_err," encrypt PEM output with cbc camellia\n"); in MAIN()
238 BIO_printf(bio_err," -text print the key in text\n"); in MAIN()
239 BIO_printf(bio_err," -noout don't print key out\n"); in MAIN()
240 BIO_printf(bio_err," -modulus print the RSA key modulus\n"); in MAIN()
241 BIO_printf(bio_err," -check verify key consistency\n"); in MAIN()
242 BIO_printf(bio_err," -pubin expect a public key in input file\n"); in MAIN()
243 BIO_printf(bio_err," -pubout output a public key\n"); in MAIN()
245 BIO_printf(bio_err," -engine e use engine e, possibly a hardware device.\n"); in MAIN()
253 e = setup_engine(bio_err, engine, 0); in MAIN()
256 if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) { in MAIN()
257 BIO_printf(bio_err, "Error getting passwords\n"); in MAIN()
262 BIO_printf(bio_err, "Only private keys can be checked\n"); in MAIN()
286 pkey = load_pubkey(bio_err, infile, tmpformat, 1, in MAIN()
290 pkey = load_key(bio_err, infile, in MAIN()
302 ERR_print_errors(bio_err); in MAIN()
329 ERR_print_errors(bio_err); in MAIN()
362 ERR_print_errors(bio_err); in MAIN()
372 BIO_printf(bio_err,"writing RSA key\n"); in MAIN()
393 BIO_printf(bio_err,"Memory allocation failure\n"); in MAIN()
426 BIO_printf(bio_err,"bad output format specified for outfile\n"); in MAIN()
431 BIO_printf(bio_err,"unable to write key\n"); in MAIN()
432 ERR_print_errors(bio_err); in MAIN()