Revision cf800b640205049aa535eef1462b5d94ebc9d521 authored by juerg on 19 March 2024, 07:53:20 UTC, committed by Copybara-Service on 19 March 2024, 07:55:06 UTC
"any" was introduced in go version 1.18. It is an alias of "interface{}":
https://tip.golang.org/doc/go1.18

PiperOrigin-RevId: 617082326
1 parent ea6f5f9
Raw File
README.md
# Tink

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.

## Documentation

For an overview of using Tink in Python, see https://developers.google.com/tink.

In addition, there are illustrative [examples of using Tink
Python](https://github.com/google/tink/tree/master/python/examples/) which can
used as a jumping off point.
back to top