Posts

Post marked as solved
6 Replies
The solution i found was to add precompiler if around certain parameters when using the simulator, in particular:#if !(TARGET_IPHONE_SIMULATOR) (__bridge NSString*)kSecAttrTokenID : (id)kSecAttrTokenIDSecureEnclave, #endif (__bridge NSString*)kSecPrivateKeyAttrs : @{ #if !(TARGET_IPHONE_SIMULATOR) (__bridge NSString*)kSecAttrAccessControl : (__bridge id)access, #endifThis fully solved the issue for me.