Parameters

Tink keys consist of both key material and metadata. The section on tagging ciphertexts explains how Tink also allows to prefix ciphertexts with a 5-byte string derived from the ID, which means that the key also depends on the ID it has in the keyset.

Therefore, to create a new key, Tink uses in general the following ingredients:

  • An object describing all parameters
  • The ID of the new key
  • Uniform, cryptographically secure randomness

Example

Consider for example HMAC (RFC 2014). To specify an HMAC computation in Tink, one needs to provide the following information, which form the key:

The corresponding parameters consist of all this information, except the actual key material. More specifically:

  • The length of the key material.
  • The hash function used.
  • The output length of the HMAC - if truncated.
  • A specification of how to find the prefix from the ID.

Together with the key material and the ID, this forms the full key. See also more details on how these objects are implemented.