mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-10 13:37:03 +03:00
14 lines
237 B
C++
14 lines
237 B
C++
#ifndef BELL_CRYPTO_H
|
|
#define BELL_CRYPTO_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#ifdef BELL_USE_MBEDTLS
|
|
#include "CryptoMbedTLS.h"
|
|
#define Crypto CryptoMbedTLS
|
|
#else
|
|
#include "CryptoOpenSSL.h"
|
|
#define Crypto CryptoOpenSSL
|
|
#endif
|
|
#endif |