Hello,
It appears as though nRF Connect does not currently support building encrypted images, so I am trying to implement it myself.
Part of creating encrypted images is providing the encryption key in mcuboot/boot/zephyr/keys.c
To that end, I have copied mcuboot into my project directory and edited that file. However, I'm unsure how to direct the build system to build from my copy of mcuboot and not from the one installed by nRF Connect.
Note that I am able to build encrypted images by editing keys.c in the nRF Connect installation and editing the nrf/modules/mcuboot/CMakeLists.txt to provide the "--encrypted" argument to imgtool.py. This proves that building encrypted images is possible, however I would like to avoid editing the installed SDK as several projects will be built against it, each with their own encryption.
Ideally I'd like to leverage the nRF Connect build as well since it figures out things like the header size and alignment to pass to imgtool. This would allow me to build a template that can work across projects as well.
Is it possible to point the build system to my copy of mcuboot?
Or is there perhaps another way to build encrypted images?
Thank you very much!