README.md (tink-1.6.0) | : | README.md (tink-1.6.1) | ||
---|---|---|---|---|
skipping to change at line 51 | skipping to change at line 51 | |||
[devs_are_users_too_slides]: https://www.usenix.org/sites/default/files/conferen ce/protected-files/hotsec15_slides_green.pdf | [devs_are_users_too_slides]: https://www.usenix.org/sites/default/files/conferen ce/protected-files/hotsec15_slides_green.pdf | |||
[tink_talk_slides]: g3doc/Tink-a_cryptographic_library--RealWorldCrypto2019.pdf | [tink_talk_slides]: g3doc/Tink-a_cryptographic_library--RealWorldCrypto2019.pdf | |||
[tink_talk_recording]: https://www.youtube.com/watch?v=pqev9r3rUJs&t=9665 | [tink_talk_recording]: https://www.youtube.com/watch?v=pqev9r3rUJs&t=9665 | |||
## Current status | ## Current status | |||
[Java/Android](docs/JAVA-HOWTO.md), [C++](docs/CPP-HOWTO.md), | [Java/Android](docs/JAVA-HOWTO.md), [C++](docs/CPP-HOWTO.md), | |||
[Obj-C](docs/OBJC-HOWTO.md), [Go](docs/GOLANG-HOWTO.md), and | [Obj-C](docs/OBJC-HOWTO.md), [Go](docs/GOLANG-HOWTO.md), and | |||
[Python](docs/PYTHON-HOWTO.md) are field tested and ready for production. The | [Python](docs/PYTHON-HOWTO.md) are field tested and ready for production. The | |||
latest version is [1.6.0](https://github.com/google/tink/releases/tag/v1.6.0), | latest version is [1.6.1](https://github.com/google/tink/releases/tag/v1.6.1), | |||
released on 2021-05-17. | released on 2021-07-12. | |||
Javascript/Typescript is in an alpha state and should only be used for testing. | Javascript/Typescript is in an alpha state and should only be used for testing. | |||
## Getting started | ## Getting started | |||
Documentation for the project is located at https://developers.google.com/tink. | Documentation for the project is located at https://developers.google.com/tink. | |||
Currently, it details a variety of common usage scenarios and covers the Java | Currently, it details a variety of common usage scenarios and covers the Java | |||
and Python implementations. The site will be populated with more content over | and Python implementations. The site will be populated with more content over | |||
time. | time. | |||
skipping to change at line 86 | skipping to change at line 86 | |||
```sh | ```sh | |||
go get github.com/google/tink/go/... | go get github.com/google/tink/go/... | |||
``` | ``` | |||
* Java | * Java | |||
```xml | ```xml | |||
<dependency> | <dependency> | |||
<groupId>com.google.crypto.tink</groupId> | <groupId>com.google.crypto.tink</groupId> | |||
<artifactId>tink</artifactId> | <artifactId>tink</artifactId> | |||
<version>1.6.0</version> | <version>1.6.1</version> | |||
</dependency> | </dependency> | |||
``` | ``` | |||
* Android | * Android | |||
``` | ``` | |||
dependencies { | dependencies { | |||
implementation 'com.google.crypto.tink:tink-android:1.6.0' | implementation 'com.google.crypto.tink:tink-android:1.6.1' | |||
} | } | |||
``` | ``` | |||
* Objective-C/iOS | * Objective-C/iOS | |||
```sh | ```sh | |||
cd /path/to/your/Xcode project/ | cd /path/to/your/Xcode project/ | |||
pod init | pod init | |||
pod 'Tink', '1.6.0' | pod 'Tink', '1.6.1' | |||
pod install | pod install | |||
``` | ``` | |||
## Learn more | ## Learn more | |||
* [Java HOW-TO](docs/JAVA-HOWTO.md) | * [Java HOW-TO](docs/JAVA-HOWTO.md) | |||
* [C++ HOW-TO](docs/CPP-HOWTO.md) | * [C++ HOW-TO](docs/CPP-HOWTO.md) | |||
* [Obj-C HOW-TO](docs/OBJC-HOWTO.md) | * [Obj-C HOW-TO](docs/OBJC-HOWTO.md) | |||
* [Go HOW-TO](docs/GOLANG-HOWTO.md) | * [Go HOW-TO](docs/GOLANG-HOWTO.md) | |||
* [Python HOW-TO](docs/PYTHON-HOWTO.md) | * [Python HOW-TO](docs/PYTHON-HOWTO.md) | |||
End of changes. 4 change blocks. | ||||
5 lines changed or deleted | 5 lines changed or added |