Charles Lee
Charles Lee
FYI, I'm finalizing the XCFramework build process now. The last remaining step is integrating the symbol stripping step (since we're wrapping (Boring/Open)SSL, we need to make sure that symbols from...
Are you using Bazel 5.1.1? The master branch was recently updated to utilize Bazel 5.1.1 throughout the project (https://github.com/google/tink/commit/b92090c4f3a83115a18df1bbabdbad75f74fff42). This is done via `.bazelversion` files, which is the convention used...
The temporary workaround (https://github.com/chuckx/tink/commit/e409e16c19724deb4abdb698b85f1ba7ca5e31bc) I stumbled across has a couple drawbacks: - It's a compile time setting that was removed in curl 7.55.0. It's only available to us because we're...
Ah, good to know. My understanding was that you were unsure if that workaround was usable in the AWS Lambda environment.
To clarify, the code sample referenced above can be found here: https://github.com/google/tink/blob/master/java_src/examples/encryptedkeyset/EncryptedKeysetExample.java Or, in its new home here: https://github.com/tink-crypto/tink-java-gcpkms/blob/main/examples/encryptedkeyset/EncryptedKeysetExample.java
On top of being easier to read/maintain, using `net/url` seems to be a bit more performant. So we should definitely go with it. ``` $ go test -bench=. goos: darwin...
The Python AWS KMS extension has been migrated to pure Python using the `boto3` library (see 6c2a240a3c746966d060b5e9f22ed19057b0ec87). Given your observation that `boto3` respects the `HTTP_PROXY` environment variable, the current implementation...
When I last investigated this issue, I was running into problems with achieving a reliably reproducible build across platforms. I'll revisit it this week to see what changes need to...
This change is reflected in dbe819bb94a5dc6081f440eeb4a6809c7ff66511. The attribution was lost due to a tooling configuration issue. Thank you for the contribution.
Following up after a long while... I'm going to close this PR as maintaining additional drivers is out of scope, as alluded to previously. If you haven't already seen it,...