Tink C++ Google Cloud KMS Extension 2.1.0
Tink is a multi-language, cross-platform library that provides simple and misuse-proof APIs for common cryptographic tasks.
This is Tink C++ Google Cloud KMS extension 2.1.0
To get started using Tink, see the setup guide.
What's new?
The complete list of changes since 2.0.0 can be found here.
- Deprecated
KmsClient
registration - Pin to
[email protected]
by default - Upgraded dependencies:
Future work
To see what we're working towards, check our project roadmap.
Getting started
Bazel
workspace(name = "example")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "tink_cc_gcpkms",
urls = ["https://github.com/tink-crypto/tink-cc-gcpkms/releases/download/v2.1.0/tink-cc-gcpkms-2.1.0.zip"],
strip_prefix = "tink-cc-gcpkms-2.1.0",
sha256 = "36148d6ecf5d79e06fac1ee49e32b07c727f159f4d90e38a30d3e416647cfae4",
)
load("@tink_cc_gcpkms//:tink_cc_gcpkms_deps.bzl", "tink_cc_gcpkms_deps")
tink_cc_gcpkms_deps()
load("@tink_cc_gcpkms//:tink_cc_gcpkms_deps_init.bzl", "tink_cc_gcpkms_deps_init")
tink_cc_gcpkms_deps_init(register_go = True)
# ... Your dependencies here ...