Tink performs cryptographic tasks via so-called primitives, which provide an abstract representation of the provided functionality. Tink primitives encompass the following cryptographic operations and are supported via the corresponding interfaces:
Primitive | Interfaces |
---|---|
Authenticated Encryption with Associated Data (AEAD) | AEAD |
Streaming AEAD | StreamingAEAD |
Deterministic AEAD | DeterministicAEAD |
Message Authentication Code (MAC) | MAC |
Hybrid encryption | HybridEncrypt, HybridDecrypt |
Digital signatures | PublicKeySign, PublicKeyVerify |
The interface names above correspond with the Java implementation. Other language implementations may have modified interface names due to differing naming conventions.
The tables in the section below summarize the current implementations of primitives available in the corresponding languages, and the subsequent sections describe the main properties of Tink primitives.
Primitive | Java | C++ | ObjC | Go |
---|---|---|---|---|
AEAD | yes | yes | yes | yes |
Streaming AEAD | yes | yes | no | no |
Deterministic AEAD | yes | yes | yes | yes |
MAC | yes | yes | yes | yes |
Digital signatures | yes | yes | yes | yes |
Hybrid encryption | yes | yes | yes | yes |
JavaScript and Python are currently under development.
Primitive | Java Implementations |
---|---|
AEAD | AES-EAX, AES-GCM, AES-CTR-HMAC, KMS Envelope, CHACHA20-POLY1305, XCHACHA-POLY1305 |
Streaming AEAD | AES-GCM-HKDF-STREAMING, AES-CTR-HMAC-STREAMING |
Deterministic AEAD | AES-SIV |
MAC | HMAC-SHA2, AES-CMAC |
Digital Signatures | ECDSA over NIST curves, Ed25519, RSA-SSA-PKCS1, RSA-SSA-PSS |
Hybrid Encryption | ECIES with AEAD and HKDF |
Primitive | C++ Implementations |
---|---|
AEAD | AES-GCM, AES-GCM-SIV, AES-CTR-HMAC, AES-EAX, KMS Envelope, XCHACHA20-POLY1305 |
Streaming AEAD | AES-GCM-HKDF-STREAMING, AES-CTR-HMAC-STREAMING |
Deterministic AEAD | AES-SIV |
MAC | HMAC-SHA2, AES-CMAC |
Digital Signatures | ECDSA over NIST curves, Ed25519, RSA-SSA-PKCS1, RSA-SSA-PSS |
Hybrid Encryption | ECIES with AEAD and HKDF |
Primitive | Objective-C Implementations |
---|---|
AEAD | AES-GCM, AES-CTR-HMAC, AES-EAX, XCHACHA20-POLY1305 |
Deterministic AEAD | AES-SIV |
MAC | HMAC-SHA2, AES-CMAC |
Digital Signatures | ECDSA over NIST curves, Ed25519, RSA-SSA-PKCS1, RSA-SSA-PSS |
Hybrid Encryption | ECIES with AEAD and HKDF |
Primitive | Go Implementations |
---|---|
AEAD | AES-GCM, AES-CTR-HMAC, KMS Envelope, CHACHA20-PLOY1305, XCHACHA-POLY1305 |
Deterministic AEAD | AES-SIV |
MAC | HMAC-SHA2 |
Digital Signatures | ECDSA over NIST curves, Ed25519 |
Hybrid Encryption | ECIES with AEAD and HKDF |
AEAD primitive (Authenticated Encryption with Associated Data) provides functionality of symmetric authenticated encryption. Implementations of this primitive are secure against adaptive chosen ciphertext attacks.
When encrypting a plaintext one can optionally provide associated data that should be authenticated but not encrypted. That is, the encryption with associated data ensures authenticity (ie. who the sender is) and integrity (ie. data has not been tampered with) of that data, but not its secrecy (see RFC 5116). This is often used for binding encryptions to a context. For example, in a banking database the contents of a row (e.g. bank account balance) can be encrypted using the customer‘s id as associated data. This would prevent swapping encrypted data between customers’ records.
Minimal properties:
Streaming AEAD primitive (Streaming Authenticated Encryption with Associated Data) provides authenticated encryption for streaming data, and is useful when the data to be encrypted is too large to be processed in a single step. Typical use cases include encryption of large files or encryption of live data streams.
The underlying encryption modes are selected so that partial plaintext can be obtained fast by decrypting and authenticating just a part of the ciphertext, without need of processing the entire ciphertext.
Encryption must be done in one session. There is no possibility to modify an existing ciphertext or to append to it (other than to reencrypt the entire file again).
Instances of Streaming AEAD follow the OAE2 definition proposed in the paper “Online Authenticated-Encryption and its Nonce-Reuse Misuse-Resistance” by Hoang, Reyhanitabar, Rogaway and Vizár.
Minimal properties:
Deterministic AEAD primitive (Deterministic Authenticated Encryption with Associated Data, DAEAD) provides encryption with a deterministic property: encrypting the same data always yields the same ciphertext. Such encryption is useful e.g. for key wrapping or for some schemes for searching on encrypted data (see RFC 5297, Section 1.3 for more info). However, because of deterministic property, implementations of this primitive are not semantically secure.
As for (regular) AEAD, when using Deterministic AEAD to encrypt a plaintext one can optionally provide associated data that should be authenticated but not encrypted. That is, the encryption with associated data ensures authenticity (ie. who the sender is) and integrity (ie. data has not been tampered with) of that data, but not its secrecy (see RFC 5116).
Minimal properties:
MAC primitive (Message Authentication Code) provides symmetric message authentication. A sender sharing a symmetric key with a recipient can compute an authentication tag for a given message, that allows for verifying that the message comes from the sender and that it has not been modified. Instances of MAC primitive are secure against existential forgery under chosen plaintext attack, and can be deterministic or randomized. This interface should be used for authentication only, and not for other purposes like generation of pseudorandom bytes.
Minimal properties:
Hybrid Encryption combines the efficiency of symmetric encryption with the convenience of public-key encryption: to encrypt a message a fresh symmetric key is generated and used to encrypt the actual plaintext data, while the recipient’s public key is used to encrypt the symmetric key only, and the final ciphertext consists of the symmetric ciphertext and the encrypted symmetric key.
WARNING Hybrid Encryption does not provide authenticity, that is the recipient of an encrypted message does not know the identity of the sender. Similar to general public-key encryption schemes the security goal of Hybrid Encryption is to provide privacy only. In other words, Hybrid Encryption is secure if and only if the recipient can accept anonymous messages or can rely on other mechanism to authenticate the sender.
The functionality of Hybrid Encryption is represented in Tink as a pair of primitives: HybridEncrypt for encryption of data, and HybridDecrypt for decryption. Implementations of these primitives are secure against adaptive chosen ciphertext attacks.
In addition to the plaintext encryption accepts an extra parameter context info, which usually is public data implicit from the context, but should be bound to the resulting ciphertext, i.e. the ciphertext allows for checking the integrity of context info but there are no guarantees wrt. to secrecy or authenticity of context info. The actual context info can be empty or null, but to ensure the correct decryption of the resulting ciphertext the same value must be provided for decryption operation.
A concrete implementation of hybrid encryption can implement the binding of context info to the ciphertext in various ways, for example:
Minimal properties:
Digital Signatures provide functionality of signing data and verification of signatures. It ensures the authenticity and the integrity of the signed data, but not its secrecy.
The functionality of Digital Signatures is represented in Tink as a pair of primitives: PublicKeySign for signing of data, and PublicKeyVerify for verification of signatures. Implementations of these primitives are secure against adaptive chosen-message attacks.
Minimal properties: