Fix creation of auth required keys. (#633)

This commit is contained in:
Max Goedjen 2025-08-24 20:36:12 -07:00 committed by GitHub
parent f0a6f2e43b
commit c32ceb6ad8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 5 deletions

View File

@ -5189,9 +5189,6 @@
}
}
}
},
"Test" : {
},
"unnamed_secret" : {
"extractionState" : "manual",

View File

@ -104,9 +104,9 @@ extension SecureEnclave {
case .notRequired:
[]
case .presenceRequired:
.userPresence
[.userPresence, .privateKeyUsage]
case .biometryCurrent:
.biometryCurrentSet
[.biometryCurrentSet, .privateKeyUsage]
case .unknown:
fatalError()
}