1 /*
2  * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #pragma once
8 
9 #ifndef _RSA_SIGN_ALT_H_
10 #define _RSA_SIGN_ALT_H_
11 
12 #ifdef __cpluscplus
13 extern "C" {
14 #endif
15 
16 #ifdef CONFIG_ESP_TLS_USE_DS_PERIPHERAL
17 #include "esp_ds/esp_rsa_sign_alt.h"
18 #else
19 
20 #error "DS configuration flags not activated, please enable required menuconfig flags"
21 
22 #endif
23 
24 #ifdef __cpluscplus
25 }
26 #endif
27 
28 #endif
29