You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have been trying to add access control to the function to_dictionary for struct ItemAddOptions to protect keychain entries with biometry and application password. I have also added some options in the search function, but they seem to have no effect. Note I have forked the repository and I am using a locally defined path so these changes are being used.
Has anyone gotten access control to work to protect their keychain entries?
For example the above is where I add the option in to_dictionary line 599 item.rs.
if let Some(access_control) = &self.access_control {
dict.add(
&unsafe { kSecAttrAccessControl }.to_void(),
&access_control.to_void(),
);
}
```
The text was updated successfully, but these errors were encountered:
Hi, I have been trying to add
access control
to the functionto_dictionary
for structItemAddOptions
to protect keychain entries with biometry and application password. I have also added some options in the search function, but they seem to have no effect. Note I have forked the repository and I am using a locally defined path so these changes are being used.Has anyone gotten access control to work to protect their keychain entries?
For example the above is where I add the option in
to_dictionary
line 599item.rs
.The text was updated successfully, but these errors were encountered: