ESP32 OTA with encrypted firmware
Posted: Fri Dec 28, 2018 8:48 am
https://docs.espressif.com/projects/esp ... ption.html
In ESP document for flash encryption i found we use
It mean the firmware ota is must be plaintext firmware.
But i want to do ota with encrypted firmware. This is a requirement for production.
Based on IDF document, i think i have to modified for write unencrypted data.
Is there any solution for this?
I also looking for ESP32 production guide.
In ESP document for flash encryption i found
And inOTA updates to encrypted partitions will automatically write encrypted, as long as the esp_partition_write function is used.
Code: Select all
esp_ota_write
Code: Select all
esp_partition_write
But i want to do ota with encrypted firmware. This is a requirement for production.
Based on IDF document, i think i have to modified
Code: Select all
esp_partition_write
Is there any solution for this?
I also looking for ESP32 production guide.