Skip to content
Tink is a multi-language, cross-platform, open source library that provides cryptographic APIs that are secure, easy to use correctly, and hard(er) to misuse.
Java C++ Go JavaScript Python Starlark Other
Branch: master
Clone or download
chuckx and Copybara-Service Bump Xcode and iOS version numbers to match the Kokoro environment.
PiperOrigin-RevId: 295075213
Latest commit 2bd8eda Feb 14, 2020
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
apps Add a folder for an experimental implementation of JWT and JWS. Feb 11, 2020
cc Remove obsolete TODO. Feb 10, 2020
cmake Bumping up versions of Protobufs and gRPC. Sep 25, 2019
docs Fixing two typos: Feb 12, 2020
examples Re-enabling C++ non-Bazel test. Jan 27, 2020
go Fix go module path. Feb 3, 2020
java Adding support for converting RSA keys from Keymaster to Tink Feb 5, 2020
javascript Remove BUILD.bazel files from JavaScript Dec 18, 2019
kokoro Bump Xcode and iOS version numbers to match the Kokoro environment. Feb 14, 2020
maven Sync protobuf dependencies in the Bazel workspace and the Maven proje… Dec 10, 2019
objc Version bump to 1.3.0-rc3. Dec 20, 2019
proto Introducing a separate WORKSPACE for Go. Jan 27, 2020
python Encrypt only DEK bytes for envelope encryption. Feb 3, 2020
testdata Fix two instances required to upgrade to bazel 1.0. Oct 18, 2019
third_party Update calls to deprecated Starlark functions/arguments Feb 6, 2020
tools Merge Gerrit change 29421 Patch Set 1 Feb 3, 2020
.bazelversion Add a .bazelversion file. This can e.g. be interpreted by bazelisk to… Oct 23, 2019
.gitignore Introducing a separate WORKSPACE for C++. Jan 21, 2020
BUILD.bazel Introducing a separate WORKSPACE for Go. Jan 27, 2020
CMakeLists.txt Simplify CMake dependencies for the example project. May 2, 2019
LICENSE Merge "Preparing for open source: adding license." Mar 23, 2017
README.md Adding kste@ as Tink maintainer. Feb 6, 2020
WORKSPACE Introducing a separate WORKSPACE for Go. Jan 27, 2020
__init__.py Internal change. Dec 20, 2019
passing_test.sh Internal change Jan 7, 2020
tink_base_deps.bzl Introducing a separate WORKSPACE for Java. Jan 22, 2020
tink_base_deps_init.bzl Merge Gerrit change 29120 Patch Set 1 Jan 22, 2020
tink_version.bzl Version bump to 1.3.0-rc3. Dec 20, 2019
tink_version.cmake Version bump to 1.3.0-rc3. Dec 20, 2019

README.md

Tink

A multi-language, cross-platform library that provides cryptographic APIs that are secure, easy to use correctly, and hard(er) to misuse.

Ubuntu macOS
Kokoro Ubuntu Kokoro macOS

Index

  1. Introduction
  2. Getting started
  3. Overview
  4. Current status
  5. Learn more
  6. Contact and mailing list
  7. Maintainers

Introduction

Using crypto in your application shouldn't have to feel like juggling chainsaws in the dark. Tink is a crypto library written by a group of cryptographers and security engineers at Google. It was born out of our extensive experience working with Google's product teams, fixing weaknesses in implementations, and providing simple APIs that can be used safely without needing a crypto background.

Tink provides secure APIs that are easy to use correctly and hard(er) to misuse. It reduces common crypto pitfalls with user-centered design, careful implementation and code reviews, and extensive testing. At Google, Tink is already being used to secure data of many products such as AdMob, Google Pay, Google Assistant, Firebase, the Android Search App, etc.

To get a quick overview of Tink design please take a look at slides from a talk about Tink presented at Real World Crypto 2019.

Getting started

Tink primarily uses Bazel to manage building and testing the project.

The recommended way to get started with Tink is to use Bazelisk. This tool is developed by the Bazel team and makes it easy to ensure usage of a version of Bazel that's compatible with the project.

As a starting point, the hello world examples demonstrate performing simple tasks using Tink in a variety of languages.

Overview

Tink performs cryptographic tasks via so-called primitives, each of which is defined via a corresponding interface that specifies the functionality of the primitive. For example, symmetric key encryption is offered via an AEAD-primitive (Authenticated Encryption with Associated Data), that supports two operations:

  • encrypt(plaintext, associated_data), which encrypts the given plaintext (using associated_data as additional AEAD-input) and returns the resulting ciphertext
  • decrypt(ciphertext, associated_data), which decrypts the given ciphertext (using associated_data as additional AEAD-input) and returns the resulting plaintext

Before implementations of primitives can be used, they must be registered at runtime with Tink, so that Tink "knows" the desired implementations. Here's how you can register all implementations of all primitives in Tink:

    import com.google.crypto.tink.config.TinkConfig;

    TinkConfig.register();

After implementations of primitives have been registered, the basic use of Tink proceeds in three steps:

  1. Load or generate the cryptographic key material (a Keyset in Tink terms).
  2. Use the key material to get an instance of the chosen primitive.
  3. Use that primitive to accomplish the cryptographic task.

Here is how these steps would look like when encrypting or decrypting with an AEAD primitive in Java:

    import com.google.crypto.tink.Aead;
    import com.google.crypto.tink.KeysetHandle;
    import com.google.crypto.tink.aead.AeadKeyTemplates;

    // 1. Generate the key material.
    KeysetHandle keysetHandle = KeysetHandle.generateNew(
        AeadKeyTemplates.AES128_GCM);

    // 2. Get the primitive.
    Aead aead = keysetHandle.getPrimitive(Aead.class);

    // 3. Use the primitive.
    byte[] ciphertext = aead.encrypt(plaintext, associatedData);

Current status

  • Java and Android, C++, Obj-C, and Go are field tested and ready for production. The latest version is 1.3.0-rc3, released on 2019-12-19.

  • Tink for Python and JavaScript are in active development.

Learn more

Community-driven ports

Out of the box Tink supports a wide range of languages, but it still doesn't support every language. Fortunately, some users like Tink so much that they've ported it to their favorite languages! Below you can find notable ports.

WARNING While we usually review these ports, until further notice, we do not maintain them and have no plan to support them in the foreseeable future.

Contact and mailing list

If you want to contribute, please read CONTRIBUTING and send us pull requests. You can also report bugs or file feature requests.

If you'd like to talk to the developers or get notified about major product updates, you may want to subscribe to our mailing list.

Maintainers

Tink is maintained by (A-Z):

  • Haris Andrianakis
  • Daniel Bleichenbacher
  • Tanuj Dhir
  • Thai Duong
  • Thomas Holenstein
  • Stefan Kölbl
  • Charles Lee
  • Quan Nguyen
  • Bartosz Przydatek
  • Enzo Puig
  • Sophie Schmieg
  • Veronika Slívová
  • Paula Vidas
  • Jürg Wullschleger
You can’t perform that action at this time.