Lines Matching full:peer
411 BIO_printf(bio_err," -verify arg - turn on peer certificate verification\n");
412 BIO_printf(bio_err," -Verify arg - turn on peer certificate verification, must have a cert.\n");
415 BIO_printf(bio_err," -crl_check - check the peer certificate has not been revoked by its CA.\n" \
417 BIO_printf(bio_err," -crl_check_all - check the peer certificate has not been revoked by its CA\n" \
2210 X509 *peer;
2240 peer=SSL_get_peer_certificate(con);
2241 if (peer != NULL)
2244 PEM_write_bio_X509(bio_s_out,peer);
2245 X509_NAME_oneline(X509_get_subject_name(peer),buf,sizeof buf);
2247 X509_NAME_oneline(X509_get_issuer_name(peer),buf,sizeof buf);
2249 X509_free(peer);
2268 BIO_printf(bio_s_out,"Peer has incorrect TLSv1 block padding\n");
2272 BIO_printf(bio_s_out,"Kerberos peer principal is %s\n",
2452 X509 *peer;
2517 peer=SSL_get_peer_certificate(con);
2518 if (peer != NULL)
2521 X509_print(io,peer);
2522 PEM_write_bio_X509(io,peer);