diff options
Diffstat (limited to 'esp8266/etshal.h')
-rw-r--r-- | esp8266/etshal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/esp8266/etshal.h b/esp8266/etshal.h index 28f9777919..90af63ba2d 100644 --- a/esp8266/etshal.h +++ b/esp8266/etshal.h @@ -24,7 +24,9 @@ extern void ets_wdt_disable(void); extern void wdt_feed(void); // Opaque structure -typedef char MD5_CTX[64]; +#ifndef MD5_CTX +typedef char MD5_CTX[88]; +#endif void MD5Init(MD5_CTX *context); void MD5Update(MD5_CTX *context, const void *data, unsigned int len); |