From 967bce3370484171665374cd31526f49aef2d052 Mon Sep 17 00:00:00 2001 From: Zach Date: Thu, 26 Sep 2024 16:39:33 -0600 Subject: [PATCH] Update usage-securestate.md --- documentation/usage-securestate.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/documentation/usage-securestate.md b/documentation/usage-securestate.md index 1c31bcb..9659ddb 100644 --- a/documentation/usage-securestate.md +++ b/documentation/usage-securestate.md @@ -6,7 +6,6 @@ - **Secure Storage**: Data stored using `SecureState` is encrypted and securely saved in the Keychain. - **Persistence**: The data remains persistent across app launches, allowing secure retrieval of sensitive values. -- **Automatic Synchronization**: On Apple devices, Keychain data can automatically sync between devices if iCloud Keychain is enabled. ## Keychain Limitations @@ -14,7 +13,6 @@ While `SecureState` is very secure, it has certain limitations: - **Limited Storage Size**: Keychain is designed for small pieces of data. It is not suitable for storing large files or datasets. - **Performance**: Accessing the Keychain is slower than accessing `UserDefaults`, so use it only when necessary to securely store sensitive data. -- **Synchronization with iCloud**: Make sure iCloud Keychain is enabled for the user’s data to sync across devices. ## Example Usage