Skip to content

Commit

Permalink
feat(esp_encrypted_ota): Changed the log from the decryption intializ…
Browse files Browse the repository at this point in the history
…ation

method from esp_encrypted_ota example
  • Loading branch information
hrushikesh430 committed Dec 31, 2024
1 parent 723cbb4 commit fa0545e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions esp_encrypted_img/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.3.0

### Enhancements:
- Added pre_encrypted_ota example, which demonstrates the OTA using encrypted image file.

## 2.2.1

- Build system: fix the dependency for generating pre encrypted image
Expand Down
2 changes: 1 addition & 1 deletion esp_encrypted_img/src/esp_encrypted_img.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ esp_decrypt_handle_t esp_encrypted_img_decrypt_start(const esp_decrypt_cfg_t *cf
ESP_LOGE(TAG, "esp_encrypted_img_decrypt_start : Invalid argument");
return NULL;
}
ESP_LOGI(TAG, "Starting Decryption Process");
ESP_LOGI(TAG, "Initializing Decryption Handle");

esp_encrypted_img_t *handle = calloc(1, sizeof(esp_encrypted_img_t));
if (!handle) {
Expand Down

0 comments on commit fa0545e

Please sign in to comment.