| Interface | Description |
|---|---|
| Aead |
Interface for Authenticated Encryption with Associated Data (AEAD).
|
| Catalogue<P> |
A catalogue of
KeyManager objects. |
| DeterministicAead |
Interface for Deterministic Authenticated Encryption with Associated Data (Deterministic AEAD).
|
| HybridDecrypt |
Interface for hybrid decryption.
|
| HybridEncrypt |
Interface for hybrid encryption.
|
| KeyManager<P> |
A KeyManager "understands" keys of a specific key type: it can generate keys of the supported
type and create primitives for supported keys.
|
| KeysetReader |
A KeysetReader knows how to read a
Keyset or an EncryptedKeyset from some source. |
| KeysetWriter |
A KeysetWriter knows how to write a
Keyset or an EncryptedKeyset to some storage
system. |
| KmsClient |
A KmsClient knows how to produce primitives backed by keys stored in remote KMS services.
|
| Mac |
Interface for Message Authentication Codes (MAC).
|
| PrivateKeyManager<P> |
A
KeyManager that understands asymmetric private key types. |
| PublicKeySign |
Interface for public key signing.
|
| PublicKeyVerify |
Interface for public key signing.
|
| StreamingAead |
An interface for streaming authenticated encryption with associated data.
|
| Class | Description |
|---|---|
| BinaryKeysetReader |
A
KeysetReader that can read from some source cleartext or encrypted keysets in proto binary wire format. |
| BinaryKeysetWriter |
A
KeysetWriter that can write to some source cleartext or encrypted keysets in proto binary wire format. |
| CleartextKeysetHandle |
Static methods for reading or writing cleartext keysets.
|
| Config |
Static methods for handling of Tink configurations.
|
| CryptoFormat |
Constants and convenience methods that deal with crypto format.
|
| JsonKeysetReader |
A
KeysetReader that can read from source source cleartext or encrypted keysets in proto
JSON format. |
| JsonKeysetWriter |
A
KeysetWriter that can write to some source cleartext or encrypted keysets in proto
JSON format. |
| KeysetHandle |
A KeysetHandle provides abstracted access to
Keyset, to limit the exposure of actual
protocol buffers that hold sensitive key material. |
| KeysetManager |
Manages a
Keyset proto, with convenience methods that rotate, disable, enable or destroy
keys. |
| KmsClients |
A container for
KmsClient-objects that are needed by KeyManager-objects for
primitives that use KMS-managed keys. |
| NoSecretKeysetHandle |
Static methods for reading cleartext keysets that don't contain any secret key material.
|
| PrimitiveSet<P> |
A container class for a set of primitives -- implementations of cryptographic primitives offered
by Tink.
|
| PrimitiveSet.Entry<P> |
A single entry in the set.
|
| Registry |
A global container of key managers and catalogues.
|