Home | History | Annotate | Download | only in apps

Lines Matching refs:peer

464 	BIO_printf(bio_err," -verify arg   - turn on peer certificate verification\n");
465 BIO_printf(bio_err," -Verify arg - turn on peer certificate verification, must have a cert.\n");
469 BIO_printf(bio_err," -crl_check - check the peer certificate has not been revoked by its CA.\n" \
471 BIO_printf(bio_err," -crl_check_all - check the peer certificate has not been revoked by its CA\n" \
2401 X509 *peer;
2449 peer=SSL_get_peer_certificate(con);
2450 if (peer != NULL)
2453 PEM_write_bio_X509(bio_s_out,peer);
2454 X509_NAME_oneline(X509_get_subject_name(peer),buf,sizeof buf);
2456 X509_NAME_oneline(X509_get_issuer_name(peer),buf,sizeof buf);
2458 X509_free(peer);
2489 "Peer has incorrect TLSv1 block padding\n");
2494 BIO_printf(bio_s_out,"Kerberos peer principal is %s\n",
2720 X509 *peer;
2790 peer=SSL_get_peer_certificate(con);
2791 if (peer != NULL)
2794 X509_print(io,peer);
2795 PEM_write_bio_X509(io,peer);