Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[realtek-ambz] Enable Mbed-TLS for MD5 hashing, remove Polar SSL #156

Merged
merged 2 commits into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions cores/common/arduino/libraries/common/MD5/MD5.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
#include <Arduino.h>

// available built-in implementations
#if LT_ARD_MD5_POLARSSL
#include "MD5PolarSSLImpl.h"
#endif
#if LT_ARD_MD5_MBEDTLS
#include "MD5MbedTLSImpl.h"
#endif
Expand Down
24 changes: 0 additions & 24 deletions cores/common/arduino/libraries/common/MD5/MD5PolarSSLImpl.cpp

This file was deleted.

4 changes: 2 additions & 2 deletions cores/realtek-ambz/arduino/src/lt_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

#error "Don't include this file directly"

#define LT_ARD_HAS_SERIAL 1
#define LT_ARD_MD5_POLARSSL 1
#define LT_ARD_HAS_SERIAL 1
#define LT_ARD_MD5_MBEDTLS 1
1 change: 0 additions & 1 deletion docs/dev/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ Checking for option value should be done with `#if` (not with `#ifdef`!) - if it
- `LT_ARD_HAS_WIFI` - WiFi library implemented
- `LT_ARD_HAS_WIRE` - Wire (I²C) library implemented
- `LT_ARD_HAS_SPI` - SPI library implemented
- `LT_ARD_MD5_POLARSSL` - use PolarSSL for MD5 library
- `LT_ARD_MD5_MBEDTLS` - use mbedTLS for MD5 library
- `LT_ARD_MD5_HOSTAPD` - use hostapd for MD5 library
- misc options
Expand Down