Files
squeezelite-esp32/components/spotify/cspot/bell/include/Crypto.h
Philippe G 898998efb0 big merge
2021-12-18 21:04:23 -08:00

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