Closed berlogb closed 3 years ago
You can probably use the oskeyring
package which gives you access to more low level parameters.
Thanks, I think it doesn't have implementation for linux. In the end I've just edited an
/* schema = */ keyring_secret_service_schema(),
into
NULL
Of course, if the input schema differs, there will be issues with parsing output, but that's ok.
Thank you.
Python and secret-tool can see all the users set from R , but R can see only users set from R itself.
Setting 3 different users via 3 different methods: secret-tool
python
R
Now trying to read it back: Python
R
So, python can see and read properly all the users, no matter from where they are set, while R can see only users set from R.
secret-tool also sees all of them:
Possible fix Issue seems to be in exact schema to be used during search, in particular here:
Wouldn't it be better not to limit search to a specific schema? Current usecase includes situation when code is deployed by sysadmins on their system and they would prefer to use available tools like secret-tool to configure all the necessary keys and not R.
Environment
Thank you