mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-10 04:43:33 +00:00
22 lines
313 B
C
22 lines
313 B
C
/*
|
|
* SPDX-FileCopyrightText: 2020-2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cpluscplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
#if defined(CONFIG_SOC_DIG_SIGN_SUPPORTED)
|
|
#include "esp_ds/esp_ds_rsa.h"
|
|
#endif
|
|
|
|
#ifdef __cpluscplus
|
|
}
|
|
#endif
|