Home | History | Annotate | Download | only in apps

Lines Matching refs:bio_err

94 	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))
165 BIO_printf(bio_err, "Usage: rand [options] num\n");
166 BIO_printf(bio_err, "where options are\n");
167 BIO_printf(bio_err, "-out file - write to file\n");
169 BIO_printf(bio_err, "-engine e - use engine e, possibly a hardware device.\n");
171 BIO_printf(bio_err, "-rand file%cfile%c... - seed PRNG from files\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
172 BIO_printf(bio_err, "-base64 - base64 encode output\n");
173 BIO_printf(bio_err, "-hex - hex encode output\n");
178 setup_engine(bio_err, engine, 0);
181 app_RAND_load_file(NULL, bio_err, (inrand != NULL));
183 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
236 app_RAND_write_file(NULL, bio_err);
240 ERR_print_errors(bio_err);