This repository was archived by the owner on Dec 15, 2022. It is now read-only.
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
return service also in "findCredentials" #144
Open
Description
"findCredentials" method performs a wildcard search on all service entries. So, with the result array {account, password} it is impossible to determine which service is it referring to. It would be better if it returns array {service, account, password}.
More details:
My app supports adding multiple credentials with a prefix like "my-app:service1", "my-app:service2" and so on. So when I call findCredentials("my-app"), it returns all the entries for my-app but I am unable to determine which result entry is referring to which service. This can be solved if method returns {service, account, password} instead of just {account, password}.