1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 22:43:50 +01:00

Merge pull request #21657 from maribu/pkg/qdsa/drop

pkg/qdsa: drop package
This commit is contained in:
crasbe 2025-09-05 11:11:22 +00:00 committed by GitHub
commit 5c1aa5abb6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 12 additions and 176 deletions

View File

@ -252,6 +252,17 @@ Author(s):
Reason for removal:
- Outdated, unmaintained and no longer working
### pkg/qdsa [cc357f9638ce22a39eab8f79055f1154388ccb74]
Author(s):
- Kaspar Schleiser <kaspar@schleiser.de> (integration into RIOT as package)
- Joost Renes <joost.renes@nxp.com> (upstream code)
Reason for removal:
- No users besides the test
- The qDSA signature does not seem to have received the level of attention and
scrutiny by the crypto community that would justify inclusion in a general
purpose OS
### gnrc_pktbuf_replace_snip() [72821a502f073006643cb4ef7815fc8c42563ce6]
Author(s):
- Joakim Nohlgård <joakim.nohlgard@eistec.se>
@ -347,3 +358,4 @@ Reason for removal:
[81458c8eed8949c686d5ded652dbee10748e860b]: https://github.com/RIOT-OS/RIOT/commit/81458c8eed8949c686d5ded652dbee10748e860b
[2b8a0d48940517f7df4e78c7a0b16024f46a8694]: https://github.com/RIOT-OS/RIOT/commit/2b8a0d48940517f7df4e78c7a0b16024f46a8694
[4953ba8e6759d2b1a1a1ea497a4ad1e71489195a]: https://github.com/RIOT-OS/RIOT/commit/4953ba8e6759d2b1a1a1ea497a4ad1e71489195a
[cc357f9638ce22a39eab8f79055f1154388ccb74]: https://github.com/RIOT-OS/RIOT/commit/cc357f9638ce22a39eab8f79055f1154388ccb74

View File

@ -1,11 +0,0 @@
PKG_NAME=qdsa
PKG_URL=https://github.com/RIOT-OS/qdsa.git
PKG_VERSION=3fa25ffa3971000fe4a3e3b42340c40c8d79f2a2
PKG_LICENSE=PD
include $(RIOTBASE)/pkg/pkg.mk
CFLAGS += -Wno-cast-align
all:
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR)/$(patsubst qdsa_impl_%,%,$(filter qdsa_impl_%,$(USEMODULE)))

View File

@ -1,20 +0,0 @@
ifneq (,$(filter cortex-m23 cortex-m0%,$(CPU_CORE)))
USEMODULE += qdsa_asm
endif
ifneq (,$(filter arch_avr8,$(FEATURES_USED)))
USEMODULE += qdsa_asm
endif
ifeq (,$(filter qdsa_impl_%,$(USEMODULE)))
ifneq (,$(filter cortex-m23 cortex-m0%,$(CPU_CORE)))
USEMODULE += qdsa_impl_arm
else ifneq (,$(filter arch_avr8,$(FEATURES_USED)))
USEMODULE += qdsa_impl_avr
else
USEMODULE += qdsa_impl_cref
endif
endif
# qDsa is not 16 bit compatible
FEATURES_BLACKLIST += arch_16bit

View File

@ -1,11 +0,0 @@
PSEUDOMODULES += qdsa_impl_arm
PSEUDOMODULES += qdsa_impl_avr
PSEUDOMODULES += qdsa_impl_cref
INCLUDES += -I$(PKGDIRBASE)/qdsa/$(patsubst qdsa_impl_%,%,$(filter qdsa_impl_%,$(USEMODULE)))
ifeq (cortex-m0plus,$(CPU_CORE))
# There are problems with the LLVM assembler and the Cortex-M0+ instruction
# set with this package
TOOLCHAINS_BLACKLIST += llvm
endif

View File

@ -1,12 +0,0 @@
/**
* @defgroup pkg_qdsa qdsa
* @ingroup pkg
* @ingroup sys
* @brief Small and Secure Digital Signatures with Curve-based Diffie-Hellman Key Pairs
*
* # License
*
* The package code is released to public domain
*
* @see https://www.cs.ru.nl/~jrenes/
*/

View File

@ -1,9 +0,0 @@
include ../Makefile.pkg_common
CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(4*THREAD_STACKSIZE_DEFAULT\)
USEPKG += qdsa
USEMODULE += random
USEMODULE += embunit
include $(RIOTBASE)/Makefile.include

View File

@ -1,14 +0,0 @@
BOARD_INSUFFICIENT_MEMORY := \
arduino-duemilanove \
arduino-leonardo \
arduino-nano \
arduino-uno \
atmega328p \
atmega328p-xplained-mini \
atmega8 \
nucleo-f031k6 \
nucleo-l011k4 \
samd10-xmini \
stk3200 \
stm32f030f4-demo \
#

View File

@ -1,82 +0,0 @@
/*
* Copyright (C) 2018 Kaspar Schleiser <kaspar@schleiser.de>
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup unittests
* @{
*
* @file
* @brief qDSA crypto library tests
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
*
* @}
*/
#include "embUnit.h"
#include "random.h"
#include "sign.h"
static const unsigned char m[] = "0123456789abcdef";
#define SMLEN (sizeof(m) + 64)
static unsigned char sm[SMLEN];
static unsigned char m_result[sizeof(m)];
static unsigned char sk[64];
static unsigned char pk[32];
static void setUp(void)
{
/* Initialize */
random_init(0);
}
static void tearDown(void)
{
/* Finalize */
}
static void test_qDSA_sign_verify(void)
{
unsigned long long smlen;
random_bytes(sk, 32);
keypair(pk, sk);
sign(sm, &smlen, m, sizeof(m), pk, sk);
TEST_ASSERT_EQUAL_INT(SMLEN, smlen);
TEST_ASSERT_EQUAL_STRING("0123456789abcdef", (const char *)(sm + 64));
TEST_ASSERT_EQUAL_INT(0, verify(m_result, 0, sm, smlen, pk));
TEST_ASSERT_EQUAL_STRING("0123456789abcdef", (const char *)m_result);
sm[70] = 'x';
TEST_ASSERT_EQUAL_INT(1, verify(m_result, 0, sm, smlen, pk));
}
Test *tests_qDSA(void)
{
EMB_UNIT_TESTFIXTURES(fixtures) {
new_TestFixture(test_qDSA_sign_verify),
};
EMB_UNIT_TESTCALLER(qDSA_tests, setUp, tearDown, fixtures);
return (Test*)&qDSA_tests;
}
int main(void)
{
TESTS_START();
TESTS_RUN(tests_qDSA());
TESTS_END();
return 0;
}

View File

@ -1,17 +0,0 @@
#!/usr/bin/env python3
# Copyright (C) 2017 Freie Universität Berlin
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
import sys
from testrunner import run_check_unittests
# It takes ~11s on nucleo-l152re, so add some margin
TIMEOUT = 15
if __name__ == "__main__":
sys.exit(run_check_unittests(timeout=TIMEOUT))