Home | History | Annotate | Download | only in asn1

Lines Matching refs:out

49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
71 /* Print out an SPKI */
73 int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki)
79 BIO_printf(out, "Netscape SPKI:\n");
81 BIO_printf(out," Public Key Algorithm: %s\n",
84 if(!pkey) BIO_printf(out, " Unable to load public key\n");
87 EVP_PKEY_print_public(out, pkey, 4, NULL);
92 BIO_printf(out, " Challenge String: %s\n", chal->data);
94 BIO_printf(out," Signature Algorithm: %s",
101 if ((i%18) == 0) BIO_write(out,"\n ",7);
102 BIO_printf(out,"%02x%s",(unsigned char)s[i],
105 BIO_write(out,"\n",1);