Home | History | Annotate | Download | only in x11vnc

Lines Matching defs:ssl

67  * without using SSH or SSL.
191 " SSL Show Certificate mode: Set the cipher to 'showcert' to fetch\n"
192 " the SSL certificate from remotehost:port and print it to the stdout.\n"
259 #include <openssl/ssl.h>
1527 fprintf(stdout, "ssl error: %s\n", str);
1536 SSL *ssl = NULL;
1581 ssl = SSL_new(ctx);
1583 if (ssl == NULL) {
1589 SSL_set_session_id_context(ssl, sid, strlen((char *)sid));
1591 if (! SSL_set_fd(ssl, sock)) {
1597 SSL_set_connect_state(ssl);
1599 if (SSL_connect(ssl) <= 0) {
1605 fprintf(stdout, "ssl error: %s\n", str);
1609 SSL_get_verify_result(ssl);
1611 sk = SSL_get_peer_cert_chain(ssl);
1625 peer = SSL_get_peer_certificate(ssl);
1640 c = SSL_get_current_cipher(ssl);