Home | History | Annotate | Download | only in apps

Lines Matching refs: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" \
2159 X509 *peer;
2185 peer=SSL_get_peer_certificate(con);
2186 if (peer != NULL)
2189 PEM_write_bio_X509(bio_s_out,peer);
2190 X509_NAME_oneline(X509_get_subject_name(peer),buf,sizeof buf);
2192 X509_NAME_oneline(X509_get_issuer_name(peer),buf,sizeof buf);
2194 X509_free(peer);
2204 BIO_printf(bio_s_out,"Peer has incorrect TLSv1 block padding\n");
2208 BIO_printf(bio_s_out,"Kerberos peer principal is %s\n",
2390 X509 *peer;
2455 peer=SSL_get_peer_certificate(con);
2456 if (peer != NULL)
2459 X509_print(io,peer);
2460 PEM_write_bio_X509(io,peer);