Core Tink + Google Cloud KMS extension.
pip3 install tink[gcpkms]==1.10.0
Core Tink + AWS KMS extension.
pip3 install tink[awskms]==1.10.0
Core Tink + HashiCorp Vault KMS extension.
pip3 install tink[hcvault]==1.10.0
Core Tink + all the KMS extensions.
pip3 install tink[all]==1.10.0
Bazel
Tink Python can be used in a Bazel project as a pip dependency using [rules_python’s pip_parse macro](https://github.com/bazelbuild/rules_python/releases/tag/0.31.0)
Alternatively, tink-py can be added as a Bazel build dependency to your WORKSPACE file:
python
load("bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "tink_py",
urls = ["https://github.com/tink-crypto/tink-py/releases/download/v1.10.0/tink-py-1.10.0.zip"],
strip_prefix = "tink-py-1.10.0",
sha256 = "767453aae4aad6de4fbb4162992184aa427b7b27864fe9912c270b24c673e1cc",
)
load("tink_py//:tink_py_deps.bzl", "tink_py_deps")
tink_py_deps()
// New
load("rules_python//python:repositories.bzl", "py_repositories")
// New
py_repositories()
load("tink_py//:tink_py_deps_init.bzl", "tink_py_deps_init")
tink_py_deps_init("tink_py")