From 4e4f5b4c833ba5285e001bdb6b832bdf91c43da3 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Mon, 30 Aug 2021 17:27:46 +0000 Subject: This commit was manufactured by cvs2git to create tag 'tb_20210830'. --- src/regress/lib/libssl/unit/ssl_methods.c | 267 ------------------------------ 1 file changed, 267 deletions(-) delete mode 100644 src/regress/lib/libssl/unit/ssl_methods.c (limited to 'src/regress/lib/libssl/unit/ssl_methods.c') diff --git a/src/regress/lib/libssl/unit/ssl_methods.c b/src/regress/lib/libssl/unit/ssl_methods.c deleted file mode 100644 index 0fc33a406c..0000000000 --- a/src/regress/lib/libssl/unit/ssl_methods.c +++ /dev/null @@ -1,267 +0,0 @@ -/* $OpenBSD: ssl_methods.c,v 1.4 2021/04/04 20:21:43 tb Exp $ */ -/* - * Copyright (c) 2020 Theo Buehler - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -#include - -#include - -struct ssl_method_test_data { - const SSL_METHOD *(*method)(void); - const char *name; - int server; - int dtls; -}; - -struct ssl_method_test_data ssl_method_tests[] = { - { - .method = SSLv23_method, - .name = "SSLv23_method", - .server = 1, - .dtls = 0, - }, - { - .method = SSLv23_server_method, - .name = "SSLv23_server_method", - .server = 1, - .dtls = 0, - }, - { - .method = SSLv23_client_method, - .name = "SSLv23_client_method", - .server = 0, - .dtls = 0, - }, - - { - .method = TLSv1_method, - .name = "TLSv1_method", - .server = 1, - .dtls = 0, - }, - { - .method = TLSv1_server_method, - .name = "TLSv1_server_method", - .server = 1, - .dtls = 0, - }, - { - .method = TLSv1_client_method, - .name = "TLSv1_client_method", - .server = 0, - .dtls = 0, - }, - - { - .method = TLSv1_1_method, - .name = "TLSv1_1_method", - .server = 1, - .dtls = 0, - }, - { - .method = TLSv1_1_server_method, - .name = "TLSv1_1_server_method", - .server = 1, - .dtls = 0, - }, - { - .method = TLSv1_1_client_method, - .name = "TLSv1_1_client_method", - .server = 0, - .dtls = 0, - }, - - { - .method = TLSv1_2_method, - .name = "TLSv1_2_method", - .server = 1, - .dtls = 0, - }, - { - .method = TLSv1_2_server_method, - .name = "TLSv1_2_server_method", - .server = 1, - .dtls = 0, - }, - { - .method = TLSv1_2_client_method, - .name = "TLSv1_2_client_method", - .server = 0, - .dtls = 0, - }, - - { - .method = TLS_method, - .name = "TLS_method", - .server = 1, - .dtls = 0, - }, - { - .method = TLS_server_method, - .name = "TLS_server_method", - .server = 1, - .dtls = 0, - }, - { - .method = TLS_client_method, - .name = "TLS_client_method", - .server = 0, - .dtls = 0, - }, - - { - .method = DTLSv1_method, - .name = "DTLSv1_method", - .server = 1, - .dtls = 1, - }, - { - .method = DTLSv1_server_method, - .name = "DTLSv1_server_method", - .server = 1, - .dtls = 1, - }, - { - .method = DTLSv1_client_method, - .name = "DTLSv1_client_method", - .server = 0, - .dtls = 1, - }, - - { - .method = DTLSv1_2_method, - .name = "DTLSv1_2_method", - .server = 1, - .dtls = 1, - }, - { - .method = DTLSv1_2_server_method, - .name = "DTLSv1_2_server_method", - .server = 1, - .dtls = 1, - }, - { - .method = DTLSv1_2_client_method, - .name = "DTLSv1_2_client_method", - .server = 0, - .dtls = 1, - }, - - { - .method = DTLS_method, - .name = "DTLS_method", - .server = 1, - .dtls = 1, - }, - { - .method = DTLS_server_method, - .name = "DTLS_server_method", - .server = 1, - .dtls = 1, - }, - { - .method = DTLS_client_method, - .name = "DTLS_client_method", - .server = 0, - .dtls = 1, - }, -}; - -#define N_METHOD_TESTS (sizeof(ssl_method_tests) / sizeof(ssl_method_tests[0])) - -int test_client_or_server_method(struct ssl_method_test_data *); -int test_dtls_method(struct ssl_method_test_data *); - -int -test_client_or_server_method(struct ssl_method_test_data *testcase) -{ - SSL_CTX *ssl_ctx; - SSL *ssl = NULL; - int failed = 1; - - if ((ssl_ctx = SSL_CTX_new(testcase->method())) == NULL) { - fprintf(stderr, "SSL_CTX_new returned NULL\n"); - goto err; - } - - if ((ssl = SSL_new(ssl_ctx)) == NULL) { - fprintf(stderr, "SSL_new returned NULL\n"); - goto err; - } - - if (SSL_is_server(ssl) != testcase->server) { - fprintf(stderr, "%s: SSL_is_server: want %d, got %d\n", - testcase->name, testcase->server, SSL_is_server(ssl)); - goto err; - } - - failed = 0; - - err: - SSL_free(ssl); - SSL_CTX_free(ssl_ctx); - - return failed; -} - -int -test_dtls_method(struct ssl_method_test_data *testcase) -{ - SSL_CTX *ssl_ctx; - SSL *ssl = NULL; - int failed = 1; - - if ((ssl_ctx = SSL_CTX_new(testcase->method())) == NULL) { - fprintf(stderr, "SSL_CTX_new returned NULL\n"); - goto err; - } - - if ((ssl = SSL_new(ssl_ctx)) == NULL) { - fprintf(stderr, "SSL_new returned NULL\n"); - goto err; - } - - if (SSL_is_dtls(ssl) != testcase->dtls) { - fprintf(stderr, "%s: SSL_is_dtls: want %d, got %d\n", - testcase->name, testcase->dtls, SSL_is_dtls(ssl)); - goto err; - } - - failed = 0; - - err: - SSL_free(ssl); - SSL_CTX_free(ssl_ctx); - - return failed; -} - -int -main(int argc, char **argv) -{ - size_t i; - int failed = 0; - - for (i = 0; i < N_METHOD_TESTS; i++) { - failed |= test_client_or_server_method(&ssl_method_tests[i]); - failed |= test_dtls_method(&ssl_method_tests[i]); - } - - if (failed == 0) - printf("PASS %s\n", __FILE__); - - return failed; -} -- cgit v1.2.3-55-g6feb