mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-14 17:13:50 +01:00
57 lines
1.2 KiB
C
57 lines
1.2 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2022 HAW Hamburg
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
/**
|
|
* @ingroup tests
|
|
* @{
|
|
*
|
|
* @brief Tests the PSA ECDSA configurations
|
|
*
|
|
* @author Mikolai Gütschow <mikolai.guetschow@tu-dresden.de>
|
|
* @author Lena Boeckmann <lena.boeckmann@haw-hamburg.de>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "psa/crypto.h"
|
|
#include "ztimer.h"
|
|
|
|
extern psa_status_t example_ecdsa_p256(void);
|
|
extern psa_status_t test_ecdsa_p256_vectors(void);
|
|
|
|
int main(void)
|
|
{
|
|
bool failed = false;
|
|
psa_status_t status;
|
|
|
|
status = test_ecdsa_p256_vectors();
|
|
if (status != PSA_SUCCESS) {
|
|
failed = true;
|
|
printf("ECDSA test vectors failed: %s\n", psa_status_to_humanly_readable(status));
|
|
}
|
|
|
|
ztimer_acquire(ZTIMER_USEC);
|
|
ztimer_now_t start = ztimer_now(ZTIMER_USEC);
|
|
|
|
start = ztimer_now(ZTIMER_USEC);
|
|
status = example_ecdsa_p256();
|
|
printf("ECDSA took %d us\n", (int)(ztimer_now(ZTIMER_USEC) - start));
|
|
if (status != PSA_SUCCESS) {
|
|
failed = true;
|
|
printf("ECDSA failed: %s\n", psa_status_to_humanly_readable(status));
|
|
}
|
|
|
|
ztimer_release(ZTIMER_USEC);
|
|
|
|
if (failed) {
|
|
puts("Tests failed...");
|
|
}
|
|
else {
|
|
puts("All Done");
|
|
}
|
|
return 0;
|
|
}
|