mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
43 lines
859 B
C
43 lines
859 B
C
/*
|
|
* Copyright (C) 2019 HAW Hamburg
|
|
*
|
|
* 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 pkg_cryptoauthlib
|
|
* @{
|
|
*
|
|
* @file
|
|
*
|
|
* @author Lena Boeckmann <lena.boeckmann@haw-hamburg.de>
|
|
*
|
|
*/
|
|
|
|
#ifndef CRYPTOAUTHLIB_TEST_H
|
|
#define CRYPTOAUTHLIB_TEST_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "cryptoauthlib.h"
|
|
#include "atca.h"
|
|
#include "atca_params.h"
|
|
|
|
/**
|
|
* @brief Helper function to use the library's unittests
|
|
* This function is defined in the cryptoauth library via patch.
|
|
* It is used to pass commands to run built-in unit tests of the library.
|
|
*/
|
|
int atca_run_cmd(char *command, size_t len);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* CRYPTOAUTHLIB_TEST_H */
|
|
/** @} */
|