Skip to content

Commit

Permalink
changed keypair to "key pair"
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamdp committed Jun 2, 2023
1 parent 306c219 commit 146a2f6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/guides/esp32/ota.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ chip-tool. On receiving this command OTA requestor will query for OTA image.
## Encrypted OTA

ESP32 supports transferring encrypted OTA images. Currently, an application
image can be encrypted/decrypted using an RSA-3072 key.
image can be encrypted/decrypted using an RSA-3072 key pair.

### Firmware Changes

Expand All @@ -82,25 +82,25 @@ image can be encrypted/decrypted using an RSA-3072 key.
CONFIG_ENABLE_ENCRYPTED_OTA=y
```
- Applications need to provide the keypair to the OTA image processor using
- Applications need to provide the key pair to the OTA image processor using
the `InitEncryptedOTA()` API to decrypt the received OTA image.
- For testing purposes, in `examples/lighting-app/esp32`, there is a logic of
embedding the private key in the firmware. To quickly test, please generate
the keypair and rename it as `esp_image_encryption_public_key.pem` and copy
the key pair and rename it as `esp_image_encryption_public_key.pem` and copy
it to directory `examples/lighting-app/esp32`.
Please follow the steps below to generate an application image for OTA upgrades:
1. Generate a new RSA-3072 keypair or use an existing one.
1. Generate a new RSA-3072 key pair or use an existing one.
- To generate a keypair, use the following command:
- To generate a key pair, use the following command:
```
openssl genrsa -out esp_image_encryption_key.pem 3072
```
- Extract the public key from the keypair:
- Extract the public key from the key pair:
```
openssl rsa -in esp_image_encryption_key.pem -pubout -out esp_image_encryption_public_key.pem
```
Expand Down

0 comments on commit 146a2f6

Please sign in to comment.