Moreno Ambrosin
Moreno Ambrosin
Hi @theory, > ## `keyset.PrimitivesWithKeyManager` Usage For `tink.AEAD` primitives, it is possible to get individual `keyset.Entry`s for existing AEAD primitives as follows (omitting error handling): ```go ks := // some...
Apologies for the delay. > But because I implemented MyKey using all of Tinks' patterns, including protobuf, the implementation of the methods that actually do encryption, decryption, and hashing needs...
Thanks for the replies > I've started experimenting with this. Sadly, it looks like [keyset.Entry](https://pkg.go.dev/github.com/tink-crypto/tink-go/[email protected]/keyset#Entry) lacks a method for the key URL. Yes, one would have to use the type...
> I managed to get everything cleaned up and working perfectly using the aforementioned [theory/tink-go@e36b890](https://github.com/theory/tink-go/commit/e36b890). To access individual keys as `tinkpb.Keyset_Key` an option is to obtain the `tinkpb.Keyset` from the...
Hi [bsergean](https://github.com/bsergean) thanks for pointing this out. AES-GCM-SIV isn't available when building with OpenSSL because the work on supporting OpenSSL in Tink predates OpenSSL 3.2. We will consider adding this...
Hi, thanks for the fix and apologies for not looking at this earlier. This SGTM, one minor thing: could you please remove the changes that reorder imports?