Merge branch 'feature/digest_default_algorithm' into 'master'

esp_http_client: add default algorithm description on digest authorization

See merge request sdk/ESP8266_RTOS_SDK!1132
This commit is contained in:
Dong Heng
2019-10-15 10:31:53 +08:00

View File

@ -81,6 +81,10 @@ char *http_auth_digest(const char *username, const char *password, esp_http_auth
return NULL;
}
if (auth_data->algorithm == NULL) {
auth_data->algorithm = "md5";
}
ha1 = calloc(1, MD5_MAX_LEN);
HTTP_MEM_CHECK(TAG, ha1, goto _digest_exit);