summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2023-09-05 15:52:23 -0400
committerPaul Duncan <pabs@pablotron.org>2023-09-05 15:52:23 -0400
commitccd675235274b420677c2dd00e600059b7c970dc (patch)
tree8c40e8eea2536c671ec234300e65344b6fdac043
parent1f5d73b606bd9b283cd0bca75a570c487ffda567 (diff)
downloadsha3-ccd675235274b420677c2dd00e600059b7c970dc.tar.bz2
sha3-ccd675235274b420677c2dd00e600059b7c970dc.zip
sha3.h: add turboshake functions
-rw-r--r--sha3.h122
1 files changed, 119 insertions, 3 deletions
diff --git a/sha3.h b/sha3.h
index aa21303..35c4b67 100644
--- a/sha3.h
+++ b/sha3.h
@@ -25,7 +25,7 @@
* - TupleHash256 and TupleHash256-XOF
* - ParallelHash128 and ParallelHash128-XOF
* - ParallelHash256 and ParallelHash256-XOF
- * - TurboHash128 and TurboHash256 (incomplete)
+ * - TurboHash128 and TurboHash256
*/
#ifndef SHA3_H
@@ -1136,13 +1136,129 @@ void parallelhash256_xof_squeeze(parallelhash_t *hash, uint8_t *dst, const size_
* parallel.
*
* @param[in] params ParallelHash configuration parameters.
- * @param[in] src Input data buffer.
- * @param[in] src_len Input data buffer length, in bytes.
+ * @param[in] src Source buffer.
+ * @param[in] src_len Source buffer length, in bytes.
* @param[out] dst Destination buffer.
* @param[in] dst_len Destination buffer length, in bytes.
*/
void parallelhash256_xof_once(const parallelhash_params_t params, const uint8_t *src, const size_t src_len, uint8_t *dst, const size_t dst_len);
+/**
+ * Initialize internal TurboSHAKE128 context, absorb `src_len` bytes of
+ * input from in source buffer `src`, then squeeze `dst_len` bytes of output
+ * into destination buffer `dst`.
+ *
+ * @param[in] src Source buffer.
+ * @param[in] src_len Source buffer length, in bytes.
+ * @param[out] dst Destination buffer.
+ * @param[in] dst_len Destination buffer length, in bytes.
+ */
+void turboshake128(const uint8_t *src, const size_t src_len, uint8_t *dst, const size_t dst_len);
+
+/**
+ * Initialize internal TurboSHAKE256 context, absorb `src_len` bytes of
+ * input from in source buffer `src`, then squeeze `dst_len` bytes of output
+ * into destination buffer `dst`.
+ *
+ * @param[in] src Source buffer.
+ * @param[in] src_len Source buffer length, in bytes.
+ * @param[out] dst Destination buffer.
+ * @param[in] dst_len Destination buffer length, in bytes.
+ */
+void turboshake256(const uint8_t *src, const size_t src_len, uint8_t *dst, const size_t dst_len);
+
+// TurboShake XOF context.
+typedef struct {
+ sha3_xof_t xof;
+ uint8_t pad;
+} turboshake_t;
+
+/**
+ * Initialize TurboSHAKE128 context.
+ *
+ * @param[out] ts TurboSHAKE128 context.
+ */
+void turboshake128_init(turboshake_t *ts);
+
+/**
+ * Initialize TurboSHAKE128 context with custom padding byte. The
+ * custom padding byte can be used as a domain separator and must be in
+ * the range [0x01, 0x7f].
+ *
+ * @param[out] ts TurboSHAKE128 context.
+ * @param[in] pad Padding byte (used for domain separation).
+ *
+ * @return False if the padding byte is out of range and true otherwise.
+ */
+_Bool turboshake128_init_custom(turboshake_t *ts, const uint8_t pad);
+
+/**
+ * Absorb `src_len` bytes of input from in source buffer `src` into
+ * TurboSHAKE128 context `ts`. Can be called iteratively to absorb
+ * input data in chunks.
+ *
+ * @param[in/out] ts TurboSHAKE128 context.
+ * @param[in] src Source buffer.
+ * @param[in] len Source buffer length, in bytes.
+ *
+ * @return True if data was absorbed, and false otherwise (e.g., if context has already been finalized).
+ */
+_Bool turboshake128_absorb(turboshake_t *ts, const uint8_t *src, const size_t len);
+
+/**
+ * Squeeze `dst_len` bytes of output into destination buffer `dst` from
+ * TurboSHAKE128 context `ts`. Can be called iteratively to squeeze
+ * output data in chunks.
+ *
+ * @param[in/out] ts TurboSHAKE128 context.
+ * @param[out] dst Destination buffer.
+ * @param[in] len Destination buffer length, in bytes.
+ */
+void turboshake128_squeeze(turboshake_t *ts, uint8_t *dst, const size_t len);
+
+/**
+ * Initialize TurboSHAKE256 context.
+ *
+ * @param[out] ts TurboSHAKE256 context.
+ */
+void turboshake256_init(turboshake_t *ts);
+
+/**
+ * Initialize TurboSHAKE256 context with custom padding byte. The
+ * custom padding byte can be used as a domain separator and must be in
+ * the range [0x01, 0x7f].
+ *
+ * @param[out] ts TurboSHAKE256 context.
+ * @param[in] pad Padding byte (used for domain separation).
+ *
+ * @return False if the padding byte is out of range and true otherwise.
+ */
+_Bool turboshake256_init_custom(turboshake_t *ts, const uint8_t pad);
+
+/**
+ * Absorb `src_len` bytes of input from in source buffer `src` into
+ * TurboSHAKE256 context `ts`. Can be called iteratively to absorb
+ * input data in chunks.
+ *
+ * @param[in/out] ts TurboSHAKE256 context.
+ * @param[in] src Source buffer.
+ * @param[in] len Source buffer length, in bytes.
+ *
+ * @return True if data was absorbed, and false otherwise (e.g., if context has already been finalized).
+ */
+_Bool turboshake256_absorb(turboshake_t *ts, const uint8_t *src, const size_t len);
+
+/**
+ * Squeeze `dst_len` bytes of output into destination buffer `dst` from
+ * TurboSHAKE128 context `ts`. Can be called iteratively to squeeze
+ * output data in chunks.
+ *
+ * @param[in/out] ts TurboSHAKE128 context.
+ * @param[out] dst Destination buffer.
+ * @param[in] len Destination buffer length, in bytes.
+ */
+void turboshake256_squeeze(turboshake_t *ts, uint8_t *dst, const size_t len);
+
#ifdef __cplusplus
}
#endif /* __cplusplus */