Lines Matching refs:bio
131 BIO *bio = BIO_new(BIO_s_mem());
133 if (bio) {
143 BIO_puts(bio, " [subject: ");
147 BIO_puts(bio, name);
149 BIO_puts(bio, "-empty-");
152 BIO_puts(bio, " / issuer: ");
156 BIO_puts(bio, name);
158 BIO_puts(bio, "-empty-");
161 BIO_puts(bio, " / serial: ");
162 if (i2a_ASN1_INTEGER(bio, X509_get_serialNumber(cert)) == -1)
163 BIO_puts(bio, "(ERROR)");
165 BIO_puts(bio, " / notbefore: ");
166 ASN1_TIME_print(bio, X509_get_notBefore(cert));
168 BIO_puts(bio, " / notafter: ");
169 ASN1_TIME_print(bio, X509_get_notAfter(cert));
171 BIO_puts(bio, "]");
173 n = BIO_read(bio, buf + msglen, sizeof buf - msglen - 1);
177 BIO_free(bio);