SecureDefaults
SecureDefaults copied to clipboard
Elevate the security of your UserDefaults with this lightweight wrapper that adds a layer of AES-256 encryption
### Description Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__SwiftValue encodeWithCoder:]: unrecognized selector sent to instance 0x600002592800' terminating with uncaught exception of type NSException ### Requirements (place an `x`...
### Description I am working in WatchOS, unable to add SecureDefaults pod What actually happened -> The platform of the target `xxx Watch App` (watchOS 8.0) is not compatible with...
Clear previously saved items in Keychain: To avoid issues with access to Keychain items after changing their accessible level, it's important to remove them first. Otherwise, if items are not...
### Description First of all, thanks for this package! Please forgive me if this question seems uninformed, as I'm somewhat new to iOS development. I'm wondering how best to use...
### Description Hey, great package and was looking to integrate it into one of my projects. Just have a small question regarding the value of AESIV and AESKey. I noticed...
### Description I have a package inside my project, insdei the package i have my test file for which i have created the scheme to test only this package' test...
Hi, if I use this code in Xcode 15 ``` let sdefaults = SecureDefaults(suiteName: "a") if !sdefaults.isKeyCreated { sdefaults.password = UUID().uuidString } sdefaults.set(password, forKey: "libre-direct.settings.password") sdefaults.synchronize() ``` I get quite...