Strongbox
Strongbox copied to clipboard
Strongbox is a Swift utility class for storing data securely in the keychain. Use it to store small, sensitive bits of data securely.
Results
1
Strongbox issues
Sort by
recently updated
recently updated
newest added
``` if let token = sb.unarchive(objectForKey: "token") as? String { .. if correct token segue to logged in screen } else{ segue to non-logged in screen } ``` I have...