Enable kSecAttrAccessibleAfterFirstUnlock
RudyB opened this issue · 3 comments
I am trying to access a users password from a widget on a locked iPhone. How do I enable kSecAttrAccessibleAfterFirstUnlock
with Locksmith?
have you got an answer on this? I need to do the same too..
Did y'all try looking at the source code? https://github.com/matthewpalmer/Locksmith/search?q=kSecAttrAccessibleAfterFirstUnlock&unscoped_q=kSecAttrAccessibleAfterFirstUnlock
yes @getaaron !
I inhertied my class have from SecureStorable
and then set the accessible
variable as public var accessible: LocksmithAccessibleOption? = {return .afterFirstUnlock}()
as suggested by Matt in one of the other issues. But, the keychain items are not accessible from background.
At this moment, the accessible
is set to default and it is whenUnlocked
. Can you please explain how I can change this?