Crypto.h 237 B

1234567891011121314
  1. #ifndef BELL_CRYPTO_H
  2. #define BELL_CRYPTO_H
  3. #include <vector>
  4. #include <string>
  5. #ifdef BELL_USE_MBEDTLS
  6. #include "CryptoMbedTLS.h"
  7. #define Crypto CryptoMbedTLS
  8. #else
  9. #include "CryptoOpenSSL.h"
  10. #define Crypto CryptoOpenSSL
  11. #endif
  12. #endif