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
Since all of the underlying platform stores support storing Vec data in credentials, it seems wasteful to force clients to encode such data as UTF-8 strings. Please add generic APIs for get_password_blob and set_password_blob that allow storing and retrieving Vec<u8> data in the most efficient way for each store.
The text was updated successfully, but these errors were encountered:
1. Add set_secret and get_secret entries to credentials and keystores and tests.
2. Rename delete_password to delete_credential everywhere.
This fixeshwchen#174.
Since all of the underlying platform stores support storing Vec data in credentials, it seems wasteful to force clients to encode such data as UTF-8 strings. Please add generic APIs for
get_password_blob
andset_password_blob
that allow storing and retrievingVec<u8>
data in the most efficient way for each store.The text was updated successfully, but these errors were encountered: