Skip to content

Commit

Permalink
Merge pull request #459 from hrushikesh430/fix/change_the_esp_encrypt…
Browse files Browse the repository at this point in the history
…ed_img_version

feat(esp_encrypted_ota): Upgraded the esp_encrypted_img component
  • Loading branch information
mahavirj authored Dec 31, 2024
2 parents 514e266 + fa0545e commit eef3909
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
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/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "2.2.1"
version: "2.3.0"
description: ESP Encrypted Image Abstraction Layer
url: https://github.com/espressif/idf-extra-components/tree/master/esp_encrypted_img
dependencies:
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 eef3909

Please sign in to comment.