HomeSort by: relevance | last modified time | path
    Searched refs:bio_out (Results 1 - 25 of 86) sorted by relevancy

1 2 3 4

  /src/crypto/external/bsd/openssl.old/dist/test/testutil/
basic_output.c 17 BIO *bio_out = NULL; variable
22 bio_out = BIO_new_fp(stdout, BIO_NOCLOSE | BIO_FP_TEXT);
25 bio_out = BIO_push(BIO_new(BIO_f_linebuffer()), bio_out);
30 OPENSSL_assert(bio_out != NULL);
36 BIO_free_all(bio_out);
42 return BIO_vprintf(bio_out, fmt, ap);
52 return BIO_flush(bio_out);
  /src/crypto/external/bsd/openssl.old/dist/fuzz/
asn1parse.c 22 static BIO *bio_out; variable
26 bio_out = BIO_new_file("/dev/null", "w");
35 (void)ASN1_parse_dump(bio_out, buf, len, 0, 0);
42 BIO_free(bio_out);
  /src/crypto/external/apache2/openssl/dist/fuzz/
asn1parse.c 22 static BIO *bio_out; variable
26 bio_out = BIO_new(BIO_s_null()); /* output will be ignored */
27 if (bio_out == NULL)
37 (void)ASN1_parse_dump(bio_out, buf, len, 0, 0);
44 BIO_free(bio_out);
  /src/crypto/external/bsd/openssl/dist/fuzz/
asn1parse.c 22 static BIO *bio_out; variable
26 bio_out = BIO_new(BIO_s_null()); /* output will be ignored */
27 if (bio_out == NULL)
37 (void)ASN1_parse_dump(bio_out, buf, len, 0, 0);
44 BIO_free(bio_out);
  /src/crypto/external/apache2/openssl/dist/apps/lib/
app_params.c 84 BIO_printf(bio_out, "%*sEmpty list of %s (!!!)\n", indent, "", thing);
86 BIO_printf(bio_out, "%*s%s:\n", indent, "", thing);
91 BIO_printf(bio_out, "%*s %s\n", indent, "", buf);
106 BIO_printf(bio_out, "%llu\n", (unsigned long long int)u);
108 BIO_printf(bio_out, "error getting value\n");
112 BIO_printf(bio_out, "%lld\n", (long long int)i);
114 BIO_printf(bio_out, "error getting value\n");
117 BIO_printf(bio_out, "'%s'\n", *(char **)(p->data));
120 BIO_printf(bio_out, "'%s'\n", (char *)p->data);
124 BIO_printf(bio_out, "<%zu bytes>\n", p->data_size)
    [all...]
  /src/crypto/external/bsd/openssl/dist/apps/lib/
app_params.c 84 BIO_printf(bio_out, "%*sEmpty list of %s (!!!)\n", indent, "", thing);
86 BIO_printf(bio_out, "%*s%s:\n", indent, "", thing);
91 BIO_printf(bio_out, "%*s %s\n", indent, "", buf);
106 BIO_printf(bio_out, "%llu\n", (unsigned long long int)u);
108 BIO_printf(bio_out, "error getting value\n");
112 BIO_printf(bio_out, "%lld\n", (long long int)i);
114 BIO_printf(bio_out, "error getting value\n");
117 BIO_printf(bio_out, "'%s'\n", *(char **)(p->data));
120 BIO_printf(bio_out, "'%s'\n", (char *)p->data);
124 BIO_printf(bio_out, "<%zu bytes>\n", p->data_size)
    [all...]
  /src/crypto/external/bsd/openssl/dist/apps/
list.c 116 BIO_printf(bio_out, "Legacy:\n");
117 EVP_CIPHER_do_all_sorted(legacy_cipher_fn, bio_out);
121 BIO_printf(bio_out, "Provided:\n");
133 BIO_printf(bio_out, " ");
134 print_names(bio_out, names);
136 BIO_printf(bio_out, " @ %s\n",
143 BIO_printf(bio_out, " description: %s\n", desc);
200 BIO_printf(bio_out, "Legacy:\n");
201 EVP_MD_do_all_sorted(legacy_md_fn, bio_out);
205 BIO_printf(bio_out, "Provided:\n")
    [all...]
crl.c 295 print_name(bio_out, "issuer=", X509_CRL_get_issuer(x));
301 BIO_printf(bio_out, "crlNumber=");
303 BIO_puts(bio_out, "0x");
304 i2a_ASN1_INTEGER(bio_out, crlnum);
307 BIO_puts(bio_out, "<NONE>");
309 BIO_printf(bio_out, "\n");
318 BIO_printf(bio_out, "issuer name hash=");
320 BIO_printf(bio_out, "%08lx\n", hash_value);
322 BIO_puts(bio_out, "<ERROR>");
329 BIO_printf(bio_out, "issuer name old hash=")
    [all...]
prime.c 116 BIO_printf(bio_out, "%s\n", s);
132 BN_print(bio_out, bn);
133 BIO_printf(bio_out, " (%s) %s prime\n",
ciphers.c 184 BIO_printf(bio_out, "OpenSSL cipher name: %s\n",
238 BIO_printf(bio_out, ":");
239 BIO_printf(bio_out, "%s", p);
241 BIO_printf(bio_out, "\n");
260 BIO_printf(bio_out, " 0x%02X,0x%02X - ", id2, id3); /* SSL3
263 BIO_printf(bio_out, "0x%02X,0x%02X,0x%02X,0x%02X - ", id0, id1, id2, id3); /* whatever */
269 BIO_printf(bio_out, "%-45s - ", nm);
271 BIO_puts(bio_out, SSL_CIPHER_description(c, buf, sizeof(buf)));
  /src/crypto/external/bsd/openssl.old/dist/apps/
openssl.c 59 BIO *bio_out = NULL; variable
135 bio_out = dup_bio_out(FORMAT_TEXT);
255 (void)BIO_flush(bio_out);
266 BIO_free_all(bio_out);
314 BIO_printf(bio_out, "%s %s\n", fp->name, o->name);
318 BIO_printf(bio_out, "%s *\n", fp->name);
345 BIO_printf(bio_out, "%s %c\n", o->name, o->valtype);
409 EVP_MD_do_all_sorted(list_md_fn, bio_out);
415 EVP_CIPHER_do_all_sorted(list_cipher_fn, bio_out);
536 BIO_printf(bio_out, "%s\n", fp->name)
    [all...]
crl.c 257 print_name(bio_out, "issuer=", X509_CRL_get_issuer(x),
263 BIO_printf(bio_out, "crlNumber=");
265 i2a_ASN1_INTEGER(bio_out, crlnum);
268 BIO_puts(bio_out, "<NONE>");
269 BIO_printf(bio_out, "\n");
272 BIO_printf(bio_out, "%08lx\n",
277 BIO_printf(bio_out, "%08lx\n",
282 BIO_printf(bio_out, "lastUpdate=");
283 ASN1_TIME_print(bio_out, X509_CRL_get0_lastUpdate(x));
284 BIO_printf(bio_out, "\n")
    [all...]
dsaparam.c 178 BIO_printf(bio_out, "static DSA *get_dsa%d(void)\n{\n", bits_p);
179 print_bignum_var(bio_out, p, "dsap", bits_p, data);
180 print_bignum_var(bio_out, q, "dsaq", bits_p, data);
181 print_bignum_var(bio_out, g, "dsag", bits_p, data);
182 BIO_printf(bio_out, " DSA *dsa = DSA_new();\n"
185 BIO_printf(bio_out, " if (dsa == NULL)\n"
187 BIO_printf(bio_out, " if (!DSA_set0_pqg(dsa, p = BN_bin2bn(dsap_%d, sizeof(dsap_%d), NULL),\n",
189 BIO_printf(bio_out, " q = BN_bin2bn(dsaq_%d, sizeof(dsaq_%d), NULL),\n",
191 BIO_printf(bio_out, " g = BN_bin2bn(dsag_%d, sizeof(dsag_%d), NULL))) {\n",
193 BIO_printf(bio_out, " DSA_free(dsa);\n
    [all...]
prime.c 105 BIO_printf(bio_out, "%s\n", s);
121 BN_print(bio_out, bn);
122 BIO_printf(bio_out, " (%s) %s prime\n",
ciphers.c 173 BIO_printf(bio_out, "OpenSSL cipher name: %s\n",
223 BIO_printf(bio_out, ":");
224 BIO_printf(bio_out, "%s", p);
226 BIO_printf(bio_out, "\n");
242 BIO_printf(bio_out, " 0x%02X,0x%02X - ", id2, id3); /* SSL3
245 BIO_printf(bio_out, "0x%02X,0x%02X,0x%02X,0x%02X - ", id0, id1, id2, id3); /* whatever */
251 BIO_printf(bio_out, "%s - ", nm);
253 BIO_puts(bio_out, SSL_CIPHER_description(c, buf, sizeof(buf)));
  /src/crypto/external/apache2/openssl/dist/apps/
list.c 123 BIO_printf(bio_out, "%sLegacy:\n", prefix);
124 EVP_CIPHER_do_all_sorted(legacy_cipher_fn, bio_out);
128 BIO_printf(bio_out, "%sProvided:\n", prefix);
140 BIO_printf(bio_out, " ");
141 print_names(bio_out, names);
143 BIO_printf(bio_out, " @ %s\n",
150 BIO_printf(bio_out, " description: %s\n", desc);
208 BIO_printf(bio_out, "%sLegacy:\n", prefix);
209 EVP_MD_do_all_sorted(legacy_md_fn, bio_out);
213 BIO_printf(bio_out, "%sProvided:\n", prefix)
    [all...]
crl.c 318 print_name(bio_out, "issuer=", X509_CRL_get_issuer(x));
324 BIO_printf(bio_out, "crlNumber=");
326 BIO_puts(bio_out, "0x");
327 i2a_ASN1_INTEGER(bio_out, crlnum);
330 BIO_puts(bio_out, "<NONE>");
332 BIO_printf(bio_out, "\n");
340 BIO_printf(bio_out, "issuer name hash=");
342 BIO_printf(bio_out, "%08lx\n", hash_value);
344 BIO_puts(bio_out, "<ERROR>");
351 BIO_printf(bio_out, "issuer name old hash=")
    [all...]
ciphers.c 186 BIO_printf(bio_out, "OpenSSL cipher name: %s\n",
240 BIO_printf(bio_out, ":");
241 BIO_printf(bio_out, "%s", p);
243 BIO_printf(bio_out, "\n");
262 BIO_printf(bio_out, " 0x%02X,0x%02X - ", id2, id3); /* SSL3
265 BIO_printf(bio_out, "0x%02X,0x%02X,0x%02X,0x%02X - ", id0, id1, id2, id3); /* whatever */
271 BIO_printf(bio_out, "%-45s - ", nm);
273 BIO_puts(bio_out, SSL_CIPHER_description(c, buf, sizeof(buf)));
prime.c 140 BIO_printf(bio_out, "%s\n", s);
154 BN_print(bio_out, bn);
160 BIO_printf(bio_out, " (%s) %s prime\n",
skeyutl.c 117 BIO_printf(bio_out, "An opaque key identified by %s is created\n",
119 BIO_printf(bio_out, "Provider: %s\n", EVP_SKEY_get0_provider_name(skey));
120 BIO_printf(bio_out, "Key management: %s\n", EVP_SKEY_get0_skeymgmt_name(skey));
  /src/crypto/external/bsd/openssl/dist/test/testutil/
basic_output.c 18 BIO *bio_out = NULL; variable
37 bio_out = BIO_push(BIO_new(BIO_f_prefix()), tap_out);
39 BIO_set_prefix(bio_out, prefix);
42 OPENSSL_assert(bio_out != NULL);
56 * we only need to free the last one in the bio_out and bio_err chains.
58 BIO_free(bio_out);
67 return BIO_vprintf(bio_out, fmt, ap);
77 return BIO_flush(bio_out);
  /src/crypto/external/apache2/openssl/dist/test/
bio_prefix_text.c 17 static BIO *bio_out = NULL; variable
21 * This program sets up a chain of BIO_f_filter() on top of bio_out, how
104 if (!BIO_up_ref(bio_out)) /* Protection against freeing */
107 next = bio_out;
136 BIO_free_all(bio_out);
150 bio_out = BIO_new_fp(stdout, BIO_NOCLOSE | BIO_FP_TEXT);
153 bio_out = BIO_push(BIO_new(BIO_f_linebuffer()), bio_out);
158 OPENSSL_assert(bio_out != NULL);
ca_internals_test.c 44 BIO_printf(bio_out, "skipping test (need64bit: %i, have64bit: %i)",
62 bio_err = bio_out;
  /src/crypto/external/bsd/openssl/dist/test/
bio_prefix_text.c 17 static BIO *bio_out = NULL; variable
21 * This program sets up a chain of BIO_f_filter() on top of bio_out, how
104 next = bio_out;
134 BIO_free_all(bio_out);
148 bio_out = BIO_new_fp(stdout, BIO_NOCLOSE | BIO_FP_TEXT);
151 bio_out = BIO_push(BIO_new(BIO_f_linebuffer()), bio_out);
156 OPENSSL_assert(bio_out != NULL);
  /src/crypto/external/apache2/openssl/dist/test/testutil/
basic_output.c 18 BIO *bio_out = NULL; variable
118 return bio_out;
146 bio_out = BIO_push(BIO_new(BIO_f_prefix()), tap_out);
148 BIO_set_prefix(bio_out, "# ");
156 OPENSSL_assert(bio_out != NULL);
173 * we only need to free the last one in the bio_out and bio_err chains.
175 BIO_free(bio_out);

Completed in 38 milliseconds

1 2 3 4