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

/freebsd-9.3-release/crypto/openssl/apps/
H A Dprime.c65 BIO *bio_out; local
96 if ((bio_out = BIO_new(BIO_s_file())) != NULL) {
97 BIO_set_fp(bio_out, stdout, BIO_NOCLOSE);
101 bio_out = BIO_push(tmpbio, bio_out);
111 BN_print(bio_out, bn);
112 BIO_printf(bio_out, " is %sprime\n",
116 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] ");
149 BIO_printf(bio_out, "|");
152 BIO_printf(bio_out, "NUMERIC");
163 BIO_printf(bio_out, "|");
166 BIO_printf(bio_out, "STRING");
171 BIO_printf(bio_out, "|");
174 BIO_printf(bio_out, "NO_INPU
192 util_verbose(ENGINE *e, int verbose, BIO *bio_out, const char *indent) argument
292 util_do_cmds(ENGINE *e, STACK * cmds, BIO *bio_out, const char *indent) argument
342 BIO *bio_out = NULL; local
[all...]
H A Dcrl.c97 static BIO *bio_out = NULL; variable
131 if (bio_out == NULL)
132 if ((bio_out = BIO_new(BIO_s_file())) != NULL) {
133 BIO_set_fp(bio_out, stdout, BIO_NOCLOSE);
137 bio_out = BIO_push(tmpbio, bio_out);
277 print_name(bio_out, "issuer=", X509_CRL_get_issuer(x),
283 BIO_printf(bio_out, "crlNumber=");
285 i2a_ASN1_INTEGER(bio_out, crlnum);
288 BIO_puts(bio_out, "<NON
[all...]

Completed in 107 milliseconds