mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
333553caf2
fix(hal/include): fix header violations in hal component fix(hal/include): Move type definitions from `xx_hal.h` to `xx_types.h` fix(hal/include): Move type definitions from `xx_hal.h` to `xx_types.h` fix(hal/include): Add comment for a far away `#endif` fix(hal/include): change scope for cpp guard ci: Remove components/hal/ comment from public headers check exceptions Add missing include macro sdkconfig.h for header files Add missing include macro stdbool.h for header files Add missing include macro stdint.h for header files Add missing capability guard macro for header files Add missing cpp guard macro for header files Remove some useless include macros Add some missing `inline` attribute for functions defined in header files Remove components/hal/ from public headers check exceptions fix(hal/include): fix invalid licenses fix(hal/include): fix invalid licenses fix(hal/include): add missing soc_caps.h fix(hal): include soc_caps.h before cap macro is used fix(hal): Remove unnecessary target check fix(hal): fix header and macro problems Add missing include macro Remove loop dependency in hal Add comment for far-away endif fix(hal): Add missing soc_caps.h ci: update check_copyright_ignore.txt Change the sequence of `#include` macro, cpp guard macro Change the wrap scope of capacity macro fix(hal): Change position of C++ guard to pass test
56 lines
1006 B
C
56 lines
1006 B
C
/*
|
|
* SPDX-FileCopyrightText: 2015-2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "hal/systimer_hal.h"
|
|
#include "hal/ds_hal.h"
|
|
#include "hal/ds_ll.h"
|
|
|
|
void ds_hal_start(void)
|
|
{
|
|
ds_ll_start();
|
|
}
|
|
|
|
void ds_hal_finish(void)
|
|
{
|
|
ds_ll_finish();
|
|
}
|
|
|
|
void ds_hal_configure_iv(const uint32_t *iv)
|
|
{
|
|
ds_ll_configure_iv(iv);
|
|
}
|
|
|
|
void ds_hal_write_message(const uint8_t *msg, size_t size)
|
|
{
|
|
ds_ll_write_message(msg, size);
|
|
}
|
|
|
|
void ds_hal_write_private_key_params(const uint8_t *key_params)
|
|
{
|
|
ds_ll_write_private_key_params(key_params);
|
|
}
|
|
|
|
void ds_hal_start_sign(void)
|
|
{
|
|
ds_ll_start_sign();
|
|
}
|
|
|
|
bool ds_hal_busy(void)
|
|
{
|
|
return ds_ll_busy();
|
|
}
|
|
|
|
ds_signature_check_t ds_hal_read_result(uint8_t *result, size_t size)
|
|
{
|
|
ds_signature_check_t check_result = ds_ll_check_signature();
|
|
|
|
if (check_result == DS_SIGNATURE_OK || check_result == DS_SIGNATURE_PADDING_FAIL) {
|
|
ds_ll_read_result(result, size);
|
|
}
|
|
|
|
return check_result;
|
|
}
|