| Interface | Description |
|---|---|
| Aead |
Interface for Authenticated Encryption with Associated Data (AEAD).
|
| Catalogue<P> | Deprecated
Catalogues are no longer supported.
|
| 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. |
| KeyWrap |
Interface for symmetric Key wrapping.
|
| KmsClient |
A KmsClient knows how to produce primitives backed by keys stored in remote KMS services.
|
| Mac |
Interface for Message Authentication Codes (MAC).
|
| PrimitiveWrapper<P> |
Basic interface for wrapping a primitive.
|
| 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. |
| KeyManagerImpl<PrimitiveT,KeyProtoT extends com.google.protobuf.MessageLite> |
Implementation of the
KeyManager interface based on an KeyTypeManager. |
| 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. |
| KeyTemplate |
A KeyTemplate specifies how to generate keys of a particular type.
|
| KeyTypeManager<KeyProtoT extends com.google.protobuf.MessageLite> |
An object which collects all the operations which one can do on for a single key type, identified
by a single KeyProto.
|
| KeyTypeManager.KeyFactory<KeyFormatProtoT extends com.google.protobuf.MessageLite,KeyT> |
A
KeyFactory creates new keys from a given KeyFormat. |
| KeyTypeManager.PrimitiveFactory<PrimitiveT,KeyT> |
A PrimitiveFactory knows how to create primitives from a given key.
|
| KmsClients |
A container for
KmsClient-objects that are needed by KeyManager-objects for
primitives that use KMS-managed keys. |
| NoSecretKeysetHandle | Deprecated |
| 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.
|
| PrivateKeyManagerImpl<PrimitiveT,KeyProtoT extends com.google.protobuf.MessageLite,PublicKeyProtoT extends com.google.protobuf.MessageLite> |
Implementation of the
PrivateKeyManager interface based on an PrivateKeyTypeManager and the corresponding public key manager, implemented by an KeyTypeManager. |
| PrivateKeyTypeManager<KeyProtoT extends com.google.protobuf.MessageLite,PublicKeyProtoT extends com.google.protobuf.MessageLite> |
A PrivateKeyManager is like an
KeyTypeManager, but additionally has a method to create a
public key. |
| Registry |
A global container of key managers and catalogues.
|
| Version |
Version of the Tink library.
|
| Enum | Description |
|---|---|
| KeyTemplate.OutputPrefixType |
Tink produces and accepts ciphertexts or signatures that consist of a prefix and a payload.
|