I wanna save login credentials in my app using the iOS keychain under swift. I downloaded the SwiftKeychainWrapper and watched a few youtube tutorials. Following these I copied the KeychainWrapper.swift file to my project and started using the provided functions to store some strings. Everything works fine but now I wonder about the need for the security framework which I didn't import manually. Is this something I still need to do in swift? I can Cmd+click those kSec keys in the wrapper and it sends me to the security framework - does this mean it's "built in" into swift now or something like that?
If I do need that framework why does it work right now "without" it? Are my strings saved but not encrypted or something like that?
I also checked out 1-2 other github projects about the keychain like Locksmith which doesn't seem to make me import that framework manually either.
Cheers