This is Tink Python 1.16.1
The complete list of changes since 1.16.0 can be found
here.
What's new
- Fix: add missing entries to init.py to allow access for GCP KMS features: Asymmetric sign, verification and MAC.
Dependency updates:
pyasn1-> 0.6.4
Get started
To get started using Tink, see
the setup guide.
Pip
# Core Tink.
pip3 install tink==1.16.1
# Core Tink + Google Cloud KMS extension.
pip3 install tink[gcpkms]==1.16.1
# Core Tink + AWS KMS extension.
pip3 install tink[awskms]==1.16.1
# Core Tink + HashiCorp Vault KMS extension.
pip3 install tink[hcvault]==1.16.1
# Core Tink + all the KMS extensions.
pip3 install tink[all]==1.16.1Bazel
Tink Python can be used in a Bazel project as a pip dependency using
rules_python's pip_parse macro.