Lines Matching defs:out
18 /* Print out an SPKI */
20 int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki)
27 BIO_printf(out, "Netscape SPKI:\n");
30 BIO_printf(out, " Public Key Algorithm: %s\n",
34 BIO_printf(out, " Unable to load public key\n");
36 EVP_PKEY_print_public(out, pkey, 4, NULL);
41 BIO_printf(out, " Challenge String: %.*s\n", chal->length, chal->data);
43 BIO_printf(out, " Signature Algorithm: %s",
50 BIO_write(out, "\n ", 7);
51 BIO_printf(out, "%02x%s", (unsigned char)s[i],
54 BIO_write(out, "\n", 1);