Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(esp_encrypted_ota): Upgraded the esp_encrypted_img component #459

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading