gpt4 book ai didi

iOS/swift : SecItemCopyMatching yields errSecParam (-50) status for access control of biometryCurrentSet

转载 作者:行者123 更新时间:2023-11-28 07:23:09 24 4
gpt4 key购买 nike

我目前正在尝试让我的应用程序的用户能够使用生物识别身份验证从钥匙串(keychain)中添加和检索数据。将项目添加到钥匙串(keychain)时,对 SecItemAdd 的调用返回成功状态,但是当通过 SecItemCopyMatching 从钥匙串(keychain)检索项目时,我得到 -50 OSStatus (errSecParam),这表明我的一个参数是错误的。

调试时,我从查询中删除了 kSecAttrAccessControlkSecAttrAccessible 参数,从而消除了错误。但是,现在我遇到了一个不同的问题,即系统在没有首先提示用户的情况下从钥匙串(keychain)中检索值。

导致 errSecParam (-50) 结果或没有身份验证提示的代码:

let query: [String: Any] = [
kSecClass as String: kSecClassGenericPassword,
kSecAttrService as String: "MyApp",
kSecAttrAccount as String: "BiometricLogin",
// removing this key from the SecItemCopyMatching query gets rid of the error but results in no authentication prompt
kSecAttrAccessible as String: kSecAttrAccessibleWhenUnlockedThisDeviceOnly,
kSecReturnAttributes as String: kCFBooleanTrue,
kSecReturnData as String: kCFBooleanTrue,
// removing this key from the SecItemCopyMatching query gets rid of the error but results in no authentication prompt
kSecAttrAccessControl as String: SecAccessControlCreateWithFlags(kCFAllocatorDefault, kSecAttrAccessibleWhenUnlockedThisDeviceOnly, .biometryCurrentSet, nil)!,
kSecUseAuthenticationUI as String: kSecUseAuthenticationUIAllow,
kSecUseOperationPrompt as String: "Authenticate with Biometrics"
]

let addQuery = query.merging([(kSecValueData as String, "Hi".data(encoding: .utf8)!)], uniquingKeysWith: { $1 })
let status = SecItemAdd(query as CFDictionary, nil)
print(status) // prints 0, success

let retrieveQuery = query
var queryResult: AnyObject?
let status = SecItemCopyMatching(retrieveQuery as CFDictionary, &queryResult)
print(status) // prints -50 if both kSecAttrAccessible and kSecAttrAccessControl are in the query, and prints 0 if either of those attributes are removed but the result is no authentication prompt

所以我的问题是:如何让用户收到身份验证提示以从钥匙串(keychain)中检索数据?重申一下,我正在使用 kSecClassGenericPasswordkSecAttrAccessibleWhenUnlockedThisDeviceOnly.biometryCurrentSet

最佳答案

kSecAttrAccessible as String: kSecAttrAccessibleWhenUnlockedThisDeviceOnly,  

导致问题的是上述 key 。这需要删除,因为它已经作为

的一部分添加
SecAccessControlCreateWithFlags(kCFAllocatorDefault, kSecAttrAccessibleWhenUnlockedThisDeviceOnly, .biometryCurrentSet, nil)!

关于iOS/swift : SecItemCopyMatching yields errSecParam (-50) status for access control of biometryCurrentSet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57424564/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com