mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-16 01:53:51 +01:00
30 lines
600 B
C
30 lines
600 B
C
/*
|
|
* SPDX-FileCopyrightText: 2023 HAW Hamburg
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
/**
|
|
* @ingroup tests
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Test application for the PSA Crypto key encoding module
|
|
*
|
|
* @author Lena Boeckmann <lena.boeckmann@haw-hamburg.de>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include "psa/crypto.h"
|
|
#include "tests_psa_persistent_storage.h"
|
|
|
|
int main(void)
|
|
{
|
|
TESTS_START();
|
|
TESTS_RUN(tests_psa_persistent_single_key_storage());
|
|
TESTS_RUN(tests_psa_persistent_asym_keypair_storage());
|
|
TESTS_RUN(tests_psa_fail_overwrite_existing_key());
|
|
TESTS_END();
|
|
return 0;
|
|
}
|