1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/unittests: add qDSA unittests

This commit is contained in:
Kaspar Schleiser 2018-03-14 17:32:17 +01:00
parent 300712c1e7
commit b22d3e4bd6
4 changed files with 127 additions and 0 deletions

View File

@ -0,0 +1 @@
include $(RIOTBASE)/Makefile.base

View File

@ -0,0 +1,2 @@
USEMODULE += random
USEPKG += qDSA

View File

@ -0,0 +1,80 @@
/*
* 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 "tests-qDSA.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_all(void)
{
EMB_UNIT_TESTFIXTURES(fixtures) {
new_TestFixture(test_qDSA_sign_verify),
};
EMB_UNIT_TESTCALLER(qDSA_tests, setUp, tearDown, fixtures);
return (Test*)&qDSA_tests;
}
void tests_qDSA(void)
{
TESTS_RUN(tests_qDSA_all());
}

View File

@ -0,0 +1,44 @@
/*
* 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.
*/
/**
* @addtogroup unittests
* @{
*
* @file
* @brief Unittests for the qDSA package
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
*/
#ifndef TESTS_QDSA_H
#define TESTS_QDSA_H
#include "embUnit/embUnit.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief The entry point of this test suite.
*/
void tests_qDSA(void);
/**
* @brief Generates tests for qDSA
*
* @return embUnit tests if successful, NULL if not.
*/
Test *tests_dDSA_tests(void);
#ifdef __cplusplus
}
#endif
#endif /* TESTS_QDSA_H */
/** @} */