aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2022-09-22 00:30:24 +0900
committerMartin Schanzenbach <schanzen@gnunet.org>2022-09-22 00:30:24 +0900
commitc50fba92d14a20c4321768c26b3dd6e417c46f23 (patch)
treec843774b5cc9462a6882ff3f0bab77405f311497
parentd9a0342d77f4489e56678d9a8e6afc9e25d8163d (diff)
downloadgnunet-c50fba92d14a20c4321768c26b3dd6e417c46f23.tar.gz
gnunet-c50fba92d14a20c4321768c26b3dd6e417c46f23.zip
UTIL: Remove outdated test. Fixes #7361
-rw-r--r--src/util/Makefile.am6
-rw-r--r--src/util/test_crypto_ecc.c57
2 files changed, 0 insertions, 63 deletions
diff --git a/src/util/Makefile.am b/src/util/Makefile.am
index b86fa0f12..9cb7da15b 100644
--- a/src/util/Makefile.am
+++ b/src/util/Makefile.am
@@ -292,7 +292,6 @@ check_PROGRAMS = \
292 test_container_heap \ 292 test_container_heap \
293 test_crypto_symmetric \ 293 test_crypto_symmetric \
294 test_crypto_crc \ 294 test_crypto_crc \
295 test_crypto_ecc \
296 test_crypto_cs \ 295 test_crypto_cs \
297 test_crypto_ecdsa \ 296 test_crypto_ecdsa \
298 test_crypto_eddsa \ 297 test_crypto_eddsa \
@@ -461,11 +460,6 @@ test_crypto_cs_LDADD = \
461 libgnunetutil.la \ 460 libgnunetutil.la \
462 -lsodium 461 -lsodium
463 462
464test_crypto_ecc_SOURCES = \
465 test_crypto_ecc.c
466test_crypto_ecc_LDADD = \
467 libgnunetutil.la
468
469test_crypto_ecdsa_SOURCES = \ 463test_crypto_ecdsa_SOURCES = \
470 test_crypto_ecdsa.c 464 test_crypto_ecdsa.c
471test_crypto_ecdsa_LDADD = \ 465test_crypto_ecdsa_LDADD = \
diff --git a/src/util/test_crypto_ecc.c b/src/util/test_crypto_ecc.c
deleted file mode 100644
index ebfa04c45..000000000
--- a/src/util/test_crypto_ecc.c
+++ /dev/null
@@ -1,57 +0,0 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2002-2015 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19
20 */
21/**
22 * @file util/test_crypto_ecc.c
23 * @brief test case for crypto_ecc.c GNUNET_CRYPTO_ecdsa_sign_raw() function
24 * @author Tristan Schwieren
25 */
26#include "platform.h"
27#include "gnunet_util_lib.h"
28
29static int
30test_GNUNET_CRYPTO_ecdsa_sign_raw ()
31{
32 struct GNUNET_CRYPTO_EcdsaPrivateKey skey;
33 struct GNUNET_CRYPTO_EcdsaPublicKey pkey;
34 struct GNUNET_CRYPTO_EcdsaSignature sig;
35 const char *test_data = "Hello World!";
36
37 /* Generate keys */
38 GNUNET_CRYPTO_ecdsa_key_create (&skey);
39 GNUNET_CRYPTO_ecdsa_key_get_public (&skey, &pkey);
40
41 GNUNET_assert (GNUNET_OK ==
42 GNUNET_CRYPTO_ecdsa_sign_raw (&skey,
43 test_data,
44 strlen (test_data),
45 &sig));
46
47 return 0;
48}
49
50int
51main (int argc, char *argv[])
52{
53 return test_GNUNET_CRYPTO_ecdsa_sign_raw ();
54}
55
56
57/* end of test_crypto_ecc.c */