WARNING: This tool is to be used only for development purpose. It does not enable any kind security feature for the protection of the sensitive data in the
esp_secure_cert
partition.
The script configure_esp_secure_cert.py is used for configuring the ESP platform with PKI credentials into the esp_secure_cert partition which shall reside on its flash storage. It also configures the DS peripheral on the ESP32-S2/ESP32-S3/ESP32-C3 SoC. The steps in the script are based on technical details of certain operations in the Digital Signature calculation, which can be found in the Digital Signature Section of ESP32-S2 TRM.
The script generates a partition named esp_secure_cert
on host machine, that contains the parameters required by the DS peripheral. The configure_esp_secure_cert.py
utility automatically flashes the partition to the ESP platform which has been connected.
pip install esp-secure-cert-tool
- Generate root ca and key pair:
openssl req -newkey rsa:2048 -nodes -keyout prvtkey.pem -x509 -days 3650 -out cacert.pem -subj "/CN=Test CA"
- Generate client private key:
openssl genrsa -out client.key
- Generate device cert:
openssl req -out client.csr -key client.key -new
openssl x509 -req -days 365 -in client.csr -CA cacert.pem -CAkey prvtkey.pem -sha256 -CAcreateserial -out client.crt
Following commands can be used to configure the DS peripheral and generate the esp_secure_cert
partition.
The script can generate cust_flash
as well as nvs
type of esp_secure_cert
partition. Please refer upper level README for more details about type of partitions.
-
When configuring the DS peripheral, by default the configuration script does not enable the read protection for the efuse key block in which the DS key is programmed. This is done for allowing flexibility while using the script for development purpose.
-
Please remove the
--configure_ds
argument from these commands if use of the DS peripheral is disabled in the menu config.
WARNING: This is not recommended for production purpose as the private key shall be stored as plaintext.
This command shall generate a binary partition containing the PKI credentials stored in the TLV format and flash it at the default offset of 0xD000
.
configure_esp_secure_cert.py -p /* Serial port */ --keep_ds_data_on_host --efuse_key_id 1 --ca-cert cacert.pem --device-cert client.crt --private-key client.key --target_chip /* target chip */ --secure_cert_type cust_flash_tlv --configure_ds
-
When Flash Encryption is enabled for the device, the option
--skip_flash
(explained below) can be used to prevent the flashing opereation and only save theesp_secure_cert.bin
on the host machine. It can then be flashed on the target using below command:esptool.py -p /* Serial Port*/ write_flash 0xD000 esp_secure_cert.bin --encrypt
More details regarding esptool.py utility can be found here.
Note: This is only applicable for Development mode of Flash Encryption.
- Generate
esp_secure_cert
partition of typecust_flash
:
configure_esp_secure_cert.py -p /* Serial port */ --keep_ds_data_on_host --efuse_key_id 1 --ca-cert cacert.pem --device-cert client.crt --private-key client.key --target_chip /* target chip */ --secure_cert_type cust_flash --configure_ds
- Generate
esp_secure_cert
partition of typenvs
:
configure_esp_secure_cert.py -p /* Serial port */ --keep_ds_data_on_host --efuse_key_id 1 --ca-cert cacert.pem --device-cert client.crt --private-key client.key --target_chip /* target chip */ --secure_cert_type nvs --configure_ds
The following options can be provided additional to the main arguments given above.
By default the esp_secure_cert
partition shall be flashed at an offset of 0xD000
by the utility.
In order to flash the esp_secure_cert
partition at a different offset, the following argument can be provided additionally to the configure_esp_secure_cert.py script.
configure_esp_secure_cert.py --sec_cert_part_offset /* offset value in hex e.g. 0xD000 */
By default the esp_secure_cert
partition shall be flashed automatically at the offset value provided to sec_cert_part_offset
argument.
In order to stop the flashing process the following argument can be provided additionally to the configure_esp_secure_cert.py script
configure_esp_secure_cert.py --skip_flash
The additional options supported by the utility can be found at configure_esp_secure_cert.py --help
.