Searched refs:bio_out (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.2-release/crypto/openssl/apps/
H A Dprime.c68 BIO *bio_out; local
108 if ((bio_out = BIO_new(BIO_s_file())) != NULL) {
109 BIO_set_fp(bio_out, stdout, BIO_NOCLOSE);
113 bio_out = BIO_push(tmpbio, bio_out);
128 BIO_printf(bio_out, "%s\n", s);
136 BN_print(bio_out, bn);
137 BIO_printf(bio_out, " is %sprime\n",
142 BIO_free_all(bio_out);
H A Dengine.c130 static int util_flags(BIO *bio_out, unsigned int flags, const char *indent) argument
134 BIO_printf(bio_out, "%s%s(input flags): ", indent, indent);
136 BIO_printf(bio_out, "<no flags>\n");
144 BIO_printf(bio_out, "[Internal] ");
148 BIO_printf(bio_out, "NUMERIC");
159 BIO_printf(bio_out, "|");
162 BIO_printf(bio_out, "STRING");
167 BIO_printf(bio_out, "|");
170 BIO_printf(bio_out, "NO_INPUT");
179 BIO_printf(bio_out, "|");
188 util_verbose(ENGINE *e, int verbose, BIO *bio_out, const char *indent) argument
288 util_do_cmds(ENGINE *e, STACK_OF(OPENSSL_STRING) *cmds, BIO *bio_out, const char *indent) argument
339 BIO *bio_out = NULL; local
[all...]
H A Dcrl.c100 static BIO *bio_out = NULL; variable
137 if (bio_out == NULL)
138 if ((bio_out = BIO_new(BIO_s_file())) != NULL) {
139 BIO_set_fp(bio_out, stdout, BIO_NOCLOSE);
143 bio_out = BIO_push(tmpbio, bio_out);
287 print_name(bio_out, "issuer=", X509_CRL_get_issuer(x),
293 BIO_printf(bio_out, "crlNumber=");
295 i2a_ASN1_INTEGER(bio_out, crlnum);
298 BIO_puts(bio_out, "<NON
[all...]

Completed in 124 milliseconds