Skip to content

Commit

Permalink
update mbedtsl (works also for framework 3.5.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDvP committed Apr 25, 2022
1 parent ab17dd5 commit adc88d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/ESPAsyncWebServer/WebAuthentication.cpp
Expand Up @@ -71,9 +71,9 @@ static bool getMD5(uint8_t * data, uint16_t len, char * output){//33 bytes or mo
memset(_buf, 0x00, 16);
#ifdef ESP32
mbedtls_md5_init(&_ctx);
mbedtls_md5_starts(&_ctx);
mbedtls_md5_update(&_ctx, data, len);
mbedtls_md5_finish(&_ctx, _buf);
mbedtls_md5_update_ret (&_ctx,data,len);
mbedtls_md5_finish_ret(&_ctx,data);
mbedtls_internal_md5_process( &_ctx ,data);
#else
MD5Init(&_ctx);
MD5Update(&_ctx, data, len);
Expand Down

0 comments on commit adc88d5

Please sign in to comment.