Flash and NVS encryption
Contents
Flash and NVS encryption#
Below is the quick start guide for encrypting the application and factory partition but before proceeding further please READ THE DOCS FIRST. Documentation References:
Generate the factory partition using generate_esp32_chip_factory_bin.py
script#
Please check generating factory data guide for various available factory data options
Provide
-e
option along with other options to generate the encrypted factory partitionTwo partition binaries will be generated
factory_partition.bin
andkeys/nvs_key_partition.bin
Flashing the application, factory partition, and nvs keys#
Flash the application using
idf.py flash
.NOTE: If not flashing for the first time you will have to use
idf.py encrypted-flash
Flash the factory partition, this SHALL be non encrypted write as NVS encryption works differently
esptool.py -p (PORT) write_flash 0x9000 path/to/factory_partition.bin
Encrypted flash the nvs keys partition
esptool.py -p (PORT) write_flash --encrypt 0x317000 path/to/nvs_key_partition.bin
NOTE: Above command uses the default addressed printed in the boot logs