cSHAKE256

cSHAKE256 is an extendable-output function (XOF) in the SHA-3 family, as specified in SP 800-185.

As a XOF, cSHAKE256 is a generalization of a cryptographic hash function. It is not limited to creating fixed-length digests (e.g., SHA-256 will always output exactly 32 bytes): it produces digests of any length, and it can be used as a Pseudo Random Generator (PRG).

Output bits do not depend on the output length.

The 256 in its name indicates its maximum security level (in bits), as described in Section 3.1 of SP 800-185.

cSHAKE256 is a customizable version of SHAKE256 and allows for additional domain separation via a customization string (custom parameter to Crypto.Hash.cSHAKE256.new()).

Hint

For instance, if you are using cSHAKE256 in two applications, by picking different customization strings you can ensure that they will never end up using the same digest in practice. The important factor is that the strings are different; what the strings say does not matter.

If the customization string is empty, cSHAKE256 defaults back to SHAKE128. See also Section 3.3 of SP 800-185.

In the following example, we extract 26 bytes (208 bits) from the XOF:

>>> from Crypto.Hash import cSHAKE256
>>>
>>> shake = cSHAKE256.new(custom=b'Email Signature')
>>> shake.update(b'Some data')
>>> print(shake.read(26).hex())
Crypto.Hash.cSHAKE256.new(data=None, custom=None)

Return a fresh instance of a cSHAKE256 object.

Parameters:
  • data (bytes/bytearray/memoryview) – The very first chunk of the message to hash. It is equivalent to an early call to update(). Optional.

  • custom (bytes) – Optional. A customization bytestring (S in SP 800-185).

Return:

A cSHAKE_XOF object