Skip to content

Tink Python v1.16.1

Latest

Choose a tag to compare

@chuckx chuckx released this 13 Aug 02:13
· 13 commits to main since this release

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.1

Bazel

Tink Python can be used in a Bazel project as a pip dependency using
rules_python's pip_parse macro.