diff --git a/docs/api/storage/KVStoreGlobalAPI.md b/docs/api/storage/KVStoreGlobalAPI.md index 26efcbf9ec..eee62ca97f 100644 --- a/docs/api/storage/KVStoreGlobalAPI.md +++ b/docs/api/storage/KVStoreGlobalAPI.md @@ -26,7 +26,6 @@ You can "or" (|) the flags below and pass them to the function set in the parame - **KV_WRITE_ONCE_FLAG:** The system does not an additional call to the function set with the same file name to delete or replace data. - **KV_REQUIRE_CONFIDENTIALITY_FLAG:** The system encrypts the data using an AES CTR, a random IV and a key derived from DeviceKey. This flag will be ignored if you select the `TDB_INTERNAL` configuration because the internal memory is seen as protected from physical attacks. -- **KV_REQUIRE_INTEGRITY_FLAG:** The system calculates a CMAC using a key derived from DeviceKey and checks the data validity when reading from the file (function `get`). - **KV_REQUIRE_REPLAY_PROTECTION_FLAG:** The system keeps a copy of the data CMAC in internal memory and checks that the data CMAC corresponds to this saved CMAC. It does this to prevent an attacker replacing the latest data with a valid old version of the data. This flag will be ignored if you select the configuration `TDB_EXTERNAL_NO_RBP` or `FILESYSTEM_NO_RBP`. #### `full_prefix`