Home
last modified time | relevance | path

Searched refs:sssl (Results 1 – 6 of 6) sorted by relevance

/freebsd/crypto/openssl/test/
H A Dfatalerrtest.c22 SSL *sssl = NULL, *cssl = NULL; in test_fatalerr() local
46 || !TEST_true(create_ssl_objects(sctx, cctx, &sssl, &cssl, NULL, in test_fatalerr()
57 if (!TEST_false(create_ssl_connection(sssl, cssl, SSL_ERROR_NONE))) in test_fatalerr()
67 if (!TEST_int_le(len = SSL_read(sssl, buf, sizeof(buf) - 1), 0)) { in test_fatalerr()
72 if (!TEST_int_le(SSL_write(sssl, msg, strlen(msg)), 0)) in test_fatalerr()
77 SSL_free(sssl); in test_fatalerr()
H A Dtls13ccstest.c248 SSL *sssl = NULL, *cssl = NULL; in test_tls13ccs() local
305 if (!TEST_true(create_ssl_objects(sctx, cctx, &sssl, &cssl, NULL, NULL)) in test_tls13ccs()
306 || !TEST_true(create_ssl_connection(sssl, cssl, SSL_ERROR_NONE))) in test_tls13ccs()
312 SSL_shutdown(sssl); in test_tls13ccs()
313 SSL_free(sssl); in test_tls13ccs()
315 sssl = cssl = NULL; in test_tls13ccs()
341 if (!TEST_true(create_ssl_objects(sctx, cctx, &sssl, &cssl, s_to_c_fbio, in test_tls13ccs()
351 && !TEST_int_eq(SSL_read_early_data(sssl, buf, sizeof(buf), in test_tls13ccs()
362 if (!TEST_int_eq(SSL_read_early_data(sssl, buf, sizeof(buf), in test_tls13ccs()
369 if (!TEST_true(create_ssl_connection(sssl, cssl, SSL_ERROR_NONE))) in test_tls13ccs()
[all …]
H A Ddtlstest.c476 SSL *sssl = NULL, *cssl = NULL; in test_swap_records() local
499 if (!TEST_true(create_ssl_objects(sctx, cctx, &sssl, &cssl, in test_swap_records()
508 if (!TEST_int_le(SSL_accept(sssl), 0)) in test_swap_records()
524 if (!TEST_int_gt(SSL_accept(sssl), 0)) in test_swap_records()
528 if (!TEST_int_eq(SSL_write(sssl, msg, sizeof(msg)), (int)sizeof(msg))) in test_swap_records()
531 bio = SSL_get_wbio(sssl); in test_swap_records()
544 bio = SSL_get_wbio(sssl); in test_swap_records()
578 SSL_free(sssl); in test_swap_records()
588 SSL *sssl = NULL, *cssl = NULL; in test_duplicate_app_data() local
612 if (!TEST_true(create_ssl_objects(sctx, cctx, &sssl, &cssl, in test_duplicate_app_data()
[all …]
H A Dsslapitest.c2597 static int post_handshake_verify(SSL *sssl, SSL *cssl) in post_handshake_verify() argument
2599 SSL_set_verify(sssl, SSL_VERIFY_PEER, NULL); in post_handshake_verify()
2600 if (!TEST_true(SSL_verify_client_post_handshake(sssl))) in post_handshake_verify()
2604 if (!TEST_int_eq(SSL_do_handshake(sssl), 1) in post_handshake_verify()
2606 || !TEST_int_le(SSL_read(sssl, NULL, 0), 0) in post_handshake_verify()
2607 || !TEST_true(create_ssl_connection(sssl, cssl, in post_handshake_verify()
/freebsd/crypto/openssl/test/helpers/
H A Dssltestlib.h27 int create_ssl_objects(SSL_CTX *serverctx, SSL_CTX *clientctx, SSL **sssl,
33 int create_ssl_objects2(SSL_CTX *serverctx, SSL_CTX *clientctx, SSL **sssl,
H A Dssltestlib.c1184 int create_ssl_objects2(SSL_CTX *serverctx, SSL_CTX *clientctx, SSL **sssl, in create_ssl_objects2() argument
1191 if (*sssl != NULL) in create_ssl_objects2()
1192 serverssl = *sssl; in create_ssl_objects2()
1227 *sssl = serverssl; in create_ssl_objects2()
1251 int create_ssl_objects(SSL_CTX *serverctx, SSL_CTX *clientctx, SSL **sssl, in create_ssl_objects() argument
1257 if (*sssl != NULL) in create_ssl_objects()
1258 serverssl = *sssl; in create_ssl_objects()
1297 *sssl = serverssl; in create_ssl_objects()