mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-06-09 15:37:37 +08:00
feat(esp_http_client): add default algorithm description on digest authorization
This commit is contained in:
@ -81,6 +81,10 @@ char *http_auth_digest(const char *username, const char *password, esp_http_auth
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (auth_data->algorithm == NULL) {
|
||||||
|
auth_data->algorithm = "md5";
|
||||||
|
}
|
||||||
|
|
||||||
ha1 = calloc(1, MD5_MAX_LEN);
|
ha1 = calloc(1, MD5_MAX_LEN);
|
||||||
HTTP_MEM_CHECK(TAG, ha1, goto _digest_exit);
|
HTTP_MEM_CHECK(TAG, ha1, goto _digest_exit);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user