go-keyring icon indicating copy to clipboard operation
go-keyring copied to clipboard

Cross-platform keyring interface for Go

Results 29 go-keyring issues
Sort by recently updated
recently updated
newest added

Is there a way to use a custom keyring (on linux) instead of 'login'?

The example from the readme file throws an error on ` ` keyring.Set(service, user, password)``: ```No such interface 'org.freedesktop.Secret.Collection' on object at path /org/freedesktop/secrets/collection/login``` Any idea why is that? If...

**UPDATE: I managed to find a solution as I wrote this issue but thought it worth sharing in case someone else comes across it** ---- This is similar to https://github.com/zalando/go-keyring/issues/8...

At least in with git gnome keyring helper the github credentials are stored with user, server and protocol parameter so it's not possible to access password with hard coded username...

As of now, go-keyring only supports "plain" to transfer secrets. It would be nice if go-keyring would support dh-ietf1024-sha256-aes128-cbc-pkcs7 as well as defined in here: https://specifications.freedesktop.org/secret-service/latest/ch07s03.html Further context: https://github.com/zalando/go-keyring/pull/66#issuecomment-1227051625 >...

enhancement

Test if `dh-ietf1024-sha256-aes128-cbc-pkcs7` works out of the box Address #81

I noticed that in using the [chanzuckerberg/aws-oidc](https://github.com/chanzuckerberg/aws-oidc) project that there was a version upgrade to [zalando/go-keyring](https://github.com/zalando/go-keyring) v0.2.1. It appears that in [zalando/go-keyring](https://github.com/zalando/go-keyring) v0.2.0, [this change](https://github.com/zalando/go-keyring/compare/v0.1.1...v0.2.0#diff-14c4aa5420de20b1ef5b174be7c1d389e4bdbbf71719ca66bf308caf38c60d1dR67-R92) caused [chanzuckerberg/aws-oidc](https://github.com/chanzuckerberg/aws-oidc) to have [this...

bugfix

Heya :wave: I was checking out gh (the github cli) and it got stuck after running `gh auth login`. So I dug a little and localized the issue in the...

Hi, I've found an issue while retrieving credentials set in the Windows Credential Manager by another application (not using `go-keyring`). Let's take this scenario, the main application sets a new...

First, thanks for this package! There is a bug on Windows. [This line](https://github.com/zalando/go-keyring/blob/b0e756d4fd2ce0775d2482c891194fe34cacfbfa/keyring_windows.go#L21) converts a byte slice to a Go string. This is fine if the byte slice is utf8,...