-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/storage_fatfs_encr_example' into 'master'
security: flash_encryption example extended with fatfs encryption Closes IDF-7639 See merge request espressif/esp-idf!27729
- Loading branch information
Showing
12 changed files
with
605 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Storage Security | ||
================ | ||
|
||
:link_to_translation:`zh_CN:[中文]` | ||
|
||
Overview of Available Resources | ||
------------------------------- | ||
|
||
Data privacy is achieved by using the :doc:`../../security/flash-encryption` feature. This mechanism is currently used by FATFS and LittleFS and is recommended for new storage type implementations based on the Partitions API. | ||
NVS storage uses a proprietary :doc:`NVS encryption <nvs_encryption>` implementation. | ||
|
||
Workflows focused on overall system security are described in the :doc:`Host Based Workflows <../../security/host-based-security-workflows>`. | ||
Workflows related to the combination of multiple secured storage components in one project are presented in the :example:`Flash Encryption Example <security/flash_encryption>`. | ||
|
||
.. list-table:: Relevant storage security examples | ||
:widths: 25 75 | ||
:header-rows: 0 | ||
|
||
* - **Link** | ||
- **Description** | ||
* - :example:`nvs_encryption_hmac <security/nvs_encryption_hmac>` | ||
- Demonstrates NVS encryption with an HMAC-based encryption key protection scheme. | ||
* - :example:`flash_encryption <security/flash_encryption>` | ||
- Provides a combined example showing the coexistence of NVS encryption, FATFS encryption, and encrypted custom data access via the Partitions API. Security related workflows for both development and production are also provided. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,5 +33,6 @@ | |
spiffs | ||
vfs | ||
wear-levelling | ||
storage-security.rst | ||
|
||
此部分 API 代码示例存放在 ESP-IDF 示例项目的 :example:`storage` 目录下。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.. include:: ../../../en/api-reference/storage/storage-security.rst |
Oops, something went wrong.