Tink v1.2.1 Release Notes

Release Date: 2018-11-16 // over 5 years ago
  • Tink is a multi-language, cross-platform library that provides simple and misuse-proof APIs for common cryptographic tasks.

    This is Tink 1.2.1.

    ๐Ÿ”„ Changes

    ๐Ÿš€ This release fixes a bunch of (non-security) bugs. There is no change in the public APIs.

    The complete list of changes since 1.2.0 can be found here.

    Installation

    C++ with prebuilt binaries

    OS="$(uname | tr '[:upper:]' '[:lower:]')"TARGET\_DIR="/usr/local"curl -L \ "https://storage.googleapis.com/tink/releases/libtink-${OS}-x86\_64-1.2.1.tar.gz" |sudo tar -xz -C ${TARGET\_DIR}
    

    Obj-C with Cocoapods

    cd /path/to/your/Xcode project/ pod init pod 'Tink', '1.2.1'pod install
    

    Java with Maven

    \<dependency\> \<groupId\>com.google.crypto.tink\</groupId\> \<artifactId\>tink\</artifactId\> \<version\>1.2.1\</version\> \</dependency\>
    

    Android with Gradle

    dependencies {
      compile 'com.google.crypto.tink:tink-android:1.2.1'
    }
    

    What's next

    ๐Ÿ‘€ See the project road map for future plans.