/third_party/openssl/test/ |
D | sslapitest.c | 351 SSL *clientssl = NULL, *serverssl = NULL; in test_keylog() local 391 &clientssl, NULL, NULL)) in test_keylog() 392 || !TEST_true(create_ssl_connection(serverssl, clientssl, in test_keylog() 407 if (!TEST_true(test_keylog_output(client_log_buffer, clientssl, in test_keylog() 408 SSL_get_session(clientssl), &expected))) in test_keylog() 420 SSL_free(clientssl); in test_keylog() 432 SSL *clientssl = NULL, *serverssl = NULL; in test_keylog_no_master_key() local 470 &clientssl, NULL, NULL)) in test_keylog_no_master_key() 471 || !TEST_true(create_ssl_connection(serverssl, clientssl, in test_keylog_no_master_key() 486 if (!TEST_true(test_keylog_output(client_log_buffer, clientssl, in test_keylog_no_master_key() [all …]
|
D | dtlstest.c | 194 SSL *serverssl = NULL, *clientssl = NULL; in test_dtls_drop_records() local 225 if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl, in test_dtls_drop_records() 227 || !TEST_true(create_ssl_connection(serverssl, clientssl, in test_dtls_drop_records() 229 || !TEST_ptr(sess = SSL_get1_session(clientssl))) in test_dtls_drop_records() 232 SSL_shutdown(clientssl); in test_dtls_drop_records() 235 SSL_free(clientssl); in test_dtls_drop_records() 236 serverssl = clientssl = NULL; in test_dtls_drop_records() 255 if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl, in test_dtls_drop_records() 260 if (!TEST_true(SSL_set_session(clientssl, sess))) in test_dtls_drop_records() 264 DTLS_set_timer_cb(clientssl, timer_cb); in test_dtls_drop_records() [all …]
|
D | sslbuffertest.c | 49 SSL *serverssl = NULL, *clientssl = NULL; in test_func() local 55 if (!TEST_true(create_ssl_objects(serverctx, clientctx, &serverssl, &clientssl, in test_func() 61 if (!TEST_true(create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE))) { in test_func() 81 if (test >= 1 && !TEST_true(SSL_free_buffers(clientssl))) in test_func() 83 if (test >= 2 && !TEST_true(SSL_alloc_buffers(clientssl))) in test_func() 86 if (test >= 3 && !TEST_true(SSL_alloc_buffers(clientssl))) in test_func() 88 if (test >= 4 && !TEST_true(SSL_free_buffers(clientssl))) in test_func() 91 ret = SSL_write(clientssl, testdata + len, in test_func() 96 int ssl_error = SSL_get_error(clientssl, ret); in test_func() 147 SSL_free(clientssl); in test_func()
|
D | asynciotest.c | 292 SSL *serverssl = NULL, *clientssl = NULL; in test_asyncio() local 326 &clientssl, s_to_c_fbio, c_to_s_fbio)) in test_asyncio() 327 || !TEST_true(create_ssl_connection(serverssl, clientssl, in test_asyncio() 344 ret = SSL_write(clientssl, testdata + len, in test_asyncio() 349 int ssl_error = SSL_get_error(clientssl, ret); in test_asyncio() 382 SSL_free(clientssl); in test_asyncio() 384 clientssl = serverssl = NULL; in test_asyncio() 389 SSL_free(clientssl); in test_asyncio()
|
D | recordlentest.c | 83 SSL *clientssl = NULL, *serverssl = NULL; in test_record_overflow() local 122 if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl, in test_record_overflow() 149 if (!TEST_true(create_ssl_connection(serverssl, clientssl, in test_record_overflow() 178 SSL_free(clientssl); in test_record_overflow()
|
D | servername_test.c | 205 SSL *clientssl = NULL, *serverssl = NULL; in server_setup_sni() local 212 || !TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl, in server_setup_sni() 219 if (!TEST_true(create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE))) in server_setup_sni() 231 SSL_free(clientssl); in server_setup_sni()
|
/third_party/openssl/test/helpers/ |
D | ssltestlib.c | 962 SSL *serverssl = NULL, *clientssl = NULL; in create_ssl_objects2() local 970 clientssl = *cssl; in create_ssl_objects2() 971 else if (!TEST_ptr(clientssl = SSL_new(clientctx))) in create_ssl_objects2() 978 SSL_set_bio(clientssl, c_to_s_bio, c_to_s_bio); in create_ssl_objects2() 981 *cssl = clientssl; in create_ssl_objects2() 986 SSL_free(clientssl); in create_ssl_objects2() 999 SSL *serverssl = NULL, *clientssl = NULL; in create_ssl_objects() local 1007 clientssl = *cssl; in create_ssl_objects() 1008 else if (!TEST_ptr(clientssl = SSL_new(clientctx))) in create_ssl_objects() 1011 if (SSL_is_dtls(clientssl)) { in create_ssl_objects() [all …]
|
D | ssltestlib.h | 21 int create_bare_ssl_connection(SSL *serverssl, SSL *clientssl, int want, 26 int create_ssl_connection(SSL *serverssl, SSL *clientssl, int want); 27 void shutdown_ssl_connection(SSL *serverssl, SSL *clientssl);
|