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");
468 BIO_printf(bio_err," -crl_check - check the peer certificate has not been revoked by its CA.\n" \
470 BIO_printf(bio_err," -crl_check_all - check the peer certificate has not been revoked by its CA\n" \
2387 X509 *peer;
2435 peer=SSL_get_peer_certificate(con);
2436 if (peer != NULL)
2439 PEM_write_bio_X509(bio_s_out,peer);
2440 X509_NAME_oneline(X509_get_subject_name(peer),buf,sizeof buf);
2442 X509_NAME_oneline(X509_get_issuer_name(peer),buf,sizeof buf);
2444 X509_free(peer);
2475 "Peer has incorrect TLSv1 block padding\n");
2480 BIO_printf(bio_s_out,"Kerberos peer principal is %s\n",
2706 X509 *peer;
2776 peer=SSL_get_peer_certificate(con);
2777 if (peer != NULL)
2780 X509_print(io,peer);
2781 PEM_write_bio_X509(io,peer);