Skip to content

Commit b19961d

Browse files
committed
Add TurboSHAKE XOF functions.
TurboSHAKE128 and TurboSHAKE256. RFC 9861 https://keccak.team/files/TurboSHAKE.pdf #691
1 parent 03881e4 commit b19961d

File tree

5 files changed

+238
-9
lines changed

5 files changed

+238
-9
lines changed

src/hashes/sha3.c

Lines changed: 50 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ const struct ltc_hash_descriptor keccak_512_desc =
130130

131131
#define SHA3_KECCAK_SPONGE_WORDS 25 /* 1600 bits > 200 bytes > 25 x ulong64 */
132132
#define SHA3_KECCAK_ROUNDS 24
133+
#define SHA3_KECCAK_RC_OFFSET 0
134+
#define SHA3_KECCAK_TURBO_ROUNDS 12
135+
#define SHA3_KECCAK_TURBO_RC_OFFSET 12
133136

134137
static const ulong64 s_keccakf_rndc[24] = {
135138
CONST64(0x0000000000000001), CONST64(0x0000000000008082),
@@ -154,12 +157,12 @@ static const unsigned s_keccakf_piln[24] = {
154157
10, 7, 11, 17, 18, 3, 5, 16, 8, 21, 24, 4, 15, 23, 19, 13, 12, 2, 20, 14, 22, 9, 6, 1
155158
};
156159

157-
static void s_keccakf(ulong64 s[25])
160+
static LTC_INLINE void s_keccak_f(ulong64 s[25], int max_rounds, int rc_offset)
158161
{
159162
int i, j, round;
160163
ulong64 t, bc[5];
161164

162-
for(round = 0; round < SHA3_KECCAK_ROUNDS; round++) {
165+
for(round = 0; round < max_rounds; round++) {
163166
/* Theta */
164167
for(i = 0; i < 5; i++) {
165168
bc[i] = s[i] ^ s[i + 5] ^ s[i + 10] ^ s[i + 15] ^ s[i + 20];
@@ -188,10 +191,23 @@ static void s_keccakf(ulong64 s[25])
188191
}
189192
}
190193
/* Iota */
191-
s[0] ^= s_keccakf_rndc[round];
194+
s[0] ^= s_keccakf_rndc[rc_offset + round];
192195
}
193196
}
194197

198+
static void s_keccakf(ulong64 s[25])
199+
{
200+
s_keccak_f(s, SHA3_KECCAK_ROUNDS, SHA3_KECCAK_RC_OFFSET);
201+
}
202+
203+
#if defined LTC_TURBO_SHAKE
204+
static void s_keccak_turbo_f(ulong64 s[25])
205+
{
206+
s_keccak_f(s, SHA3_KECCAK_TURBO_ROUNDS, SHA3_KECCAK_TURBO_RC_OFFSET);
207+
}
208+
#endif
209+
210+
195211
static LTC_INLINE int ss_done(hash_state *md, unsigned char *hash, ulong64 pad)
196212
{
197213
unsigned i;
@@ -257,7 +273,8 @@ int sha3_shake_init(hash_state *md, int num)
257273
}
258274
#endif
259275

260-
int sha3_process(hash_state *md, const unsigned char *in, unsigned long inlen)
276+
typedef void (*process_fn)(ulong64 s[25]);
277+
static LTC_INLINE int s_sha3_process(hash_state *md, const unsigned char *in, unsigned long inlen, process_fn proc_f)
261278
{
262279
/* 0...7 -- how much is needed to have a word */
263280
unsigned old_tail = (8 - md->sha3.byte_index) & 7;
@@ -283,7 +300,7 @@ int sha3_process(hash_state *md, const unsigned char *in, unsigned long inlen)
283300
md->sha3.byte_index = 0;
284301
md->sha3.saved = 0;
285302
if(++md->sha3.word_index == (SHA3_KECCAK_SPONGE_WORDS - md->sha3.capacity_words)) {
286-
s_keccakf(md->sha3.s);
303+
proc_f(md->sha3.s);
287304
md->sha3.word_index = 0;
288305
}
289306
}
@@ -297,7 +314,7 @@ int sha3_process(hash_state *md, const unsigned char *in, unsigned long inlen)
297314
LOAD64L(t, in);
298315
md->sha3.s[md->sha3.word_index] ^= t;
299316
if(++md->sha3.word_index == (SHA3_KECCAK_SPONGE_WORDS - md->sha3.capacity_words)) {
300-
s_keccakf(md->sha3.s);
317+
proc_f(md->sha3.s);
301318
md->sha3.word_index = 0;
302319
}
303320
}
@@ -309,6 +326,18 @@ int sha3_process(hash_state *md, const unsigned char *in, unsigned long inlen)
309326
return CRYPT_OK;
310327
}
311328

329+
int sha3_process(hash_state *md, const unsigned char *in, unsigned long inlen)
330+
{
331+
return s_sha3_process(md, in, inlen, s_keccakf);
332+
}
333+
334+
#if defined LTC_TURBO_SHAKE
335+
int turbo_shake_process(hash_state *md, const unsigned char *in, unsigned long inlen)
336+
{
337+
return s_sha3_process(md, in, inlen, s_keccak_turbo_f);
338+
}
339+
#endif
340+
312341
#ifdef LTC_SHA3
313342
int sha3_done(hash_state *md, unsigned char *out)
314343
{
@@ -324,7 +353,7 @@ int keccak_done(hash_state *md, unsigned char *out)
324353
#endif
325354

326355
#ifdef LTC_SHA3
327-
int sha3_shake_done(hash_state *md, unsigned char *out, unsigned long outlen)
356+
static LTC_INLINE int s_sha3_shake_done(hash_state *md, unsigned char *out, unsigned long outlen, process_fn proc_f)
328357
{
329358
/* IMPORTANT NOTE: sha3_shake_done can be called many times */
330359
unsigned long idx;
@@ -338,7 +367,7 @@ int sha3_shake_done(hash_state *md, unsigned char *out, unsigned long outlen)
338367
/* shake_xof operation must be done only once */
339368
md->sha3.s[md->sha3.word_index] ^= (md->sha3.saved ^ (CONST64(0x1F) << (md->sha3.byte_index * 8)));
340369
md->sha3.s[SHA3_KECCAK_SPONGE_WORDS - md->sha3.capacity_words - 1] ^= CONST64(0x8000000000000000);
341-
s_keccakf(md->sha3.s);
370+
proc_f(md->sha3.s);
342371
/* store sha3.s[] as little-endian bytes into sha3.sb */
343372
for(i = 0; i < SHA3_KECCAK_SPONGE_WORDS; i++) {
344373
STORE64L(md->sha3.s[i], md->sha3.sb + i * 8);
@@ -349,7 +378,7 @@ int sha3_shake_done(hash_state *md, unsigned char *out, unsigned long outlen)
349378

350379
for (idx = 0; idx < outlen; idx++) {
351380
if(md->sha3.byte_index >= (SHA3_KECCAK_SPONGE_WORDS - md->sha3.capacity_words) * 8) {
352-
s_keccakf(md->sha3.s);
381+
proc_f(md->sha3.s);
353382
/* store sha3.s[] as little-endian bytes into sha3.sb */
354383
for(i = 0; i < SHA3_KECCAK_SPONGE_WORDS; i++) {
355384
STORE64L(md->sha3.s[i], md->sha3.sb + i * 8);
@@ -361,6 +390,18 @@ int sha3_shake_done(hash_state *md, unsigned char *out, unsigned long outlen)
361390
return CRYPT_OK;
362391
}
363392

393+
int sha3_shake_done(hash_state *md, unsigned char *out, unsigned long outlen)
394+
{
395+
return s_sha3_shake_done(md, out, outlen, s_keccakf);
396+
}
397+
398+
#if defined LTC_TURBO_SHAKE
399+
int turbo_shake_done(hash_state *md, unsigned char *out, unsigned long outlen)
400+
{
401+
return s_sha3_shake_done(md, out, outlen, s_keccak_turbo_f);
402+
}
403+
#endif
404+
364405
int sha3_shake_memory(int num, const unsigned char *in, unsigned long inlen, unsigned char *out, const unsigned long *outlen)
365406
{
366407
hash_state md;

src/hashes/sha3_test.c

Lines changed: 177 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,183 @@ int sha3_shake_test(void)
388388
#endif
389389
}
390390

391+
#ifdef LTC_TURBO_SHAKE
392+
int turbo_shake_test(void)
393+
{
394+
#ifndef LTC_TEST
395+
return CRYPT_NOP;
396+
#else
397+
unsigned char hash[64];
398+
hash_state c;
399+
int i;
400+
401+
// https://datatracker.ietf.org/doc/html/rfc9861#name-test-vectors
402+
// https://www.rfc-editor.org/rfc/rfc9861.txt
403+
const unsigned char turbo_shake_input_single_zero[] = {
404+
0x00,
405+
};
406+
const unsigned char turbo_shake_input_ptn_17_pow_1[] = {
407+
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
408+
0x10,
409+
};
410+
const unsigned char turbo_shake_input_ptn_17_pow_2[] = {
411+
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
412+
0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
413+
0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,
414+
0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
415+
0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
416+
0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,
417+
0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
418+
0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,
419+
0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
420+
0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,
421+
0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,
422+
0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,
423+
0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf,
424+
0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf,
425+
0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef,
426+
0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa,
427+
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
428+
0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
429+
0x20, 0x21, 0x22, 0x23, 0x24, 0x25,
430+
};
431+
432+
const unsigned char turbo_shake_128_empty[64] = {
433+
0x1e, 0x41, 0x5f, 0x1c, 0x59, 0x83, 0xaf, 0xf2, 0x16, 0x92, 0x17, 0x27, 0x7d, 0x17, 0xbb, 0x53,
434+
0x8c, 0xd9, 0x45, 0xa3, 0x97, 0xdd, 0xec, 0x54, 0x1f, 0x1c, 0xe4, 0x1a, 0xf2, 0xc1, 0xb7, 0x4c,
435+
0x3e, 0x8c, 0xca, 0xe2, 0xa4, 0xda, 0xe5, 0x6c, 0x84, 0xa0, 0x4c, 0x23, 0x85, 0xc0, 0x3c, 0x15,
436+
0xe8, 0x19, 0x3b, 0xdf, 0x58, 0x73, 0x73, 0x63, 0x32, 0x16, 0x91, 0xc0, 0x54, 0x62, 0xc8, 0xdf,
437+
};
438+
const unsigned char turbo_shake_128_empty_10032[32] = {
439+
0xa3, 0xb9, 0xb0, 0x38, 0x59, 0x00, 0xce, 0x76, 0x1f, 0x22, 0xae, 0xd5, 0x48, 0xe7, 0x54, 0xda,
440+
0x10, 0xa5, 0x24, 0x2d, 0x62, 0xe8, 0xc6, 0x58, 0xe3, 0xf3, 0xa9, 0x23, 0xa7, 0x55, 0x56, 0x07,
441+
};
442+
const unsigned char turbo_shake_128_single_zero_byte[32] = {
443+
0x55, 0xce, 0xdd, 0x6f, 0x60, 0xaf, 0x7b, 0xb2, 0x9a, 0x40, 0x42, 0xae, 0x83, 0x2e, 0xf3, 0xf5,
444+
0x8d, 0xb7, 0x29, 0x9f, 0x89, 0x3e, 0xbb, 0x92, 0x47, 0x24, 0x7d, 0x85, 0x69, 0x58, 0xda, 0xa9,
445+
};
446+
const unsigned char turbo_shake_128_ptn_pow_1[32] = {
447+
0x9c, 0x97, 0xd0, 0x36, 0xa3, 0xba, 0xc8, 0x19, 0xdb, 0x70, 0xed, 0xe0, 0xca, 0x55, 0x4e, 0xc6,
448+
0xe4, 0xc2, 0xa1, 0xa4, 0xff, 0xbf, 0xd9, 0xec, 0x26, 0x9c, 0xa6, 0xa1, 0x11, 0x16, 0x12, 0x33,
449+
};
450+
const unsigned char turbo_shake_128_ptn_pow_2[32] = {
451+
0x96, 0xc7, 0x7c, 0x27, 0x9e, 0x01, 0x26, 0xf7, 0xfc, 0x07, 0xc9, 0xb0, 0x7f, 0x5c, 0xda, 0xe1,
452+
0xe0, 0xbe, 0x60, 0xbd, 0xbe, 0x10, 0x62, 0x00, 0x40, 0xe7, 0x5d, 0x72, 0x23, 0xa6, 0x24, 0xd2,
453+
};
454+
455+
const unsigned char turbo_shake_256_empty[64] = {
456+
0x36, 0x7a, 0x32, 0x9d, 0xaf, 0xea, 0x87, 0x1c, 0x78, 0x02, 0xec, 0x67, 0xf9, 0x05, 0xae, 0x13,
457+
0xc5, 0x76, 0x95, 0xdc, 0x2c, 0x66, 0x63, 0xc6, 0x10, 0x35, 0xf5, 0x9a, 0x18, 0xf8, 0xe7, 0xdb,
458+
0x11, 0xed, 0xc0, 0xe1, 0x2e, 0x91, 0xea, 0x60, 0xeb, 0x6b, 0x32, 0xdf, 0x06, 0xdd, 0x7f, 0x00,
459+
0x2f, 0xba, 0xfa, 0xbb, 0x6e, 0x13, 0xec, 0x1c, 0xc2, 0x0d, 0x99, 0x55, 0x47, 0x60, 0x0d, 0xb0,
460+
};
461+
const unsigned char turbo_shake_256_empty_10032[32] = {
462+
0xab, 0xef, 0xa1, 0x16, 0x30, 0xc6, 0x61, 0x26, 0x92, 0x49, 0x74, 0x26, 0x85, 0xec, 0x08, 0x2f,
463+
0x20, 0x72, 0x65, 0xdc, 0xcf, 0x2f, 0x43, 0x53, 0x4e, 0x9c, 0x61, 0xba, 0x0c, 0x9d, 0x1d, 0x75,
464+
};
465+
const unsigned char turbo_shake_256_single_zero_byte[64] = {
466+
0x3e, 0x17, 0x12, 0xf9, 0x28, 0xf8, 0xea, 0xf1, 0x05, 0x46, 0x32, 0xb2, 0xaa, 0x0a, 0x24, 0x6e,
467+
0xd8, 0xb0, 0xc3, 0x78, 0x72, 0x8f, 0x60, 0xbc, 0x97, 0x04, 0x10, 0x15, 0x5c, 0x28, 0x82, 0x0e,
468+
0x90, 0xcc, 0x90, 0xd8, 0xa3, 0x00, 0x6a, 0xa2, 0x37, 0x2c, 0x5c, 0x5e, 0xa1, 0x76, 0xb0, 0x68,
469+
0x2b, 0xf2, 0x2b, 0xae, 0x74, 0x67, 0xac, 0x94, 0xf7, 0x4d, 0x43, 0xd3, 0x9b, 0x04, 0x82, 0xe2,
470+
};
471+
const unsigned char turbo_shake_256_ptn_pow_1[64] = {
472+
0xb3, 0xba, 0xb0, 0x30, 0x0e, 0x6a, 0x19, 0x1f, 0xbe, 0x61, 0x37, 0x93, 0x98, 0x35, 0x92, 0x35,
473+
0x78, 0x79, 0x4e, 0xa5, 0x48, 0x43, 0xf5, 0x01, 0x10, 0x90, 0xfa, 0x2f, 0x37, 0x80, 0xa9, 0xe5,
474+
0xcb, 0x22, 0xc5, 0x9d, 0x78, 0xb4, 0x0a, 0x0f, 0xbf, 0xf9, 0xe6, 0x72, 0xc0, 0xfb, 0xe0, 0x97,
475+
0x0b, 0xd2, 0xc8, 0x45, 0x09, 0x1c, 0x60, 0x44, 0xd6, 0x87, 0x05, 0x4d, 0xa5, 0xd8, 0xe9, 0xc7,
476+
};
477+
const unsigned char turbo_shake_256_ptn_pow_2[64] = {
478+
0x66, 0xb8, 0x10, 0xdb, 0x8e, 0x90, 0x78, 0x04, 0x24, 0xc0, 0x84, 0x73, 0x72, 0xfd, 0xc9, 0x57,
479+
0x10, 0x88, 0x2f, 0xde, 0x31, 0xc6, 0xdf, 0x75, 0xbe, 0xb9, 0xd4, 0xcd, 0x93, 0x05, 0xcf, 0xca,
480+
0xe3, 0x5e, 0x7b, 0x83, 0xe8, 0xb7, 0xe6, 0xeb, 0x4b, 0x78, 0x60, 0x58, 0x80, 0x11, 0x63, 0x16,
481+
0xfe, 0x2c, 0x07, 0x8a, 0x09, 0xb9, 0x4a, 0xd7, 0xb8, 0x21, 0x3c, 0x0a, 0x73, 0x8b, 0x65, 0xc0,
482+
};
483+
484+
/* TurboSHAKE128 on an empty buffer */
485+
sha3_shake_init(&c, 128);
486+
turbo_shake_done(&c, hash, 64);
487+
if (compare_testvector(hash, 64, turbo_shake_128_empty, sizeof(turbo_shake_128_empty), "TurboSHAKE128", 0)) {
488+
return CRYPT_FAIL_TESTVECTOR;
489+
}
490+
491+
/* TurboSHAKE128 on an empty buffer, digest length 10032 bytes, test last 32 bytes */
492+
sha3_shake_init(&c, 128);
493+
for(i = 0; i != 10000 / 10; ++i){ turbo_shake_done(&c, hash, 10); }
494+
turbo_shake_done(&c, hash, 32);
495+
if (compare_testvector(hash, 32, turbo_shake_128_empty_10032, sizeof(turbo_shake_128_empty_10032), "TurboSHAKE128", 0)) {
496+
return CRYPT_FAIL_TESTVECTOR;
497+
}
498+
499+
/* TurboSHAKE128 on single zero byte */
500+
sha3_shake_init(&c, 128);
501+
turbo_shake_process(&c, turbo_shake_input_single_zero, sizeof(turbo_shake_input_single_zero));
502+
turbo_shake_done(&c, hash, 32);
503+
if (compare_testvector(hash, 32, turbo_shake_128_single_zero_byte, sizeof(turbo_shake_128_single_zero_byte), "TurboSHAKE128", 0)) {
504+
return CRYPT_FAIL_TESTVECTOR;
505+
}
506+
507+
/* TurboSHAKE128 on ptn(17**1) */
508+
sha3_shake_init(&c, 128);
509+
turbo_shake_process(&c, turbo_shake_input_ptn_17_pow_1, sizeof(turbo_shake_input_ptn_17_pow_1));
510+
turbo_shake_done(&c, hash, 32);
511+
if (compare_testvector(hash, 32, turbo_shake_128_ptn_pow_1, sizeof(turbo_shake_128_ptn_pow_1), "TurboSHAKE128", 0)) {
512+
return CRYPT_FAIL_TESTVECTOR;
513+
}
514+
515+
/* TurboSHAKE128 on ptn(17**2) */
516+
sha3_shake_init(&c, 128);
517+
turbo_shake_process(&c, turbo_shake_input_ptn_17_pow_2, sizeof(turbo_shake_input_ptn_17_pow_2));
518+
turbo_shake_done(&c, hash, 32);
519+
if (compare_testvector(hash, 32, turbo_shake_128_ptn_pow_2, sizeof(turbo_shake_128_ptn_pow_2), "TurboSHAKE128", 0)) {
520+
return CRYPT_FAIL_TESTVECTOR;
521+
}
522+
523+
524+
/* TurboSHAKE256 on an empty buffer */
525+
sha3_shake_init(&c, 256);
526+
turbo_shake_done(&c, hash, 64);
527+
if (compare_testvector(hash, 64, turbo_shake_256_empty, sizeof(turbo_shake_256_empty), "TurboSHAKE256", 0)) {
528+
return CRYPT_FAIL_TESTVECTOR;
529+
}
530+
531+
/* TurboSHAKE256 on an empty buffer, digest length 10032 bytes, test last 32 bytes */
532+
sha3_shake_init(&c, 256);
533+
for(i = 0; i != 10000 / 10; ++i){ turbo_shake_done(&c, hash, 10); }
534+
turbo_shake_done(&c, hash, 32);
535+
if (compare_testvector(hash, 32, turbo_shake_256_empty_10032, sizeof(turbo_shake_256_empty_10032), "TurboSHAKE256", 0)) {
536+
return CRYPT_FAIL_TESTVECTOR;
537+
}
538+
539+
/* TurboSHAKE256 on single zero byte */
540+
sha3_shake_init(&c, 256);
541+
turbo_shake_process(&c, turbo_shake_input_single_zero, sizeof(turbo_shake_input_single_zero));
542+
turbo_shake_done(&c, hash, 64);
543+
if (compare_testvector(hash, 64, turbo_shake_256_single_zero_byte, sizeof(turbo_shake_256_single_zero_byte), "TurboSHAKE256", 0)) {
544+
return CRYPT_FAIL_TESTVECTOR;
545+
}
546+
547+
/* TurboSHAKE256 on ptn(17**1) */
548+
sha3_shake_init(&c, 256);
549+
turbo_shake_process(&c, turbo_shake_input_ptn_17_pow_1, sizeof(turbo_shake_input_ptn_17_pow_1));
550+
turbo_shake_done(&c, hash, 64);
551+
if (compare_testvector(hash, 64, turbo_shake_256_ptn_pow_1, sizeof(turbo_shake_256_ptn_pow_1), "TurboSHAKE256", 0)) {
552+
return CRYPT_FAIL_TESTVECTOR;
553+
}
554+
555+
/* TurboSHAKE256 on ptn(17**2) */
556+
sha3_shake_init(&c, 256);
557+
turbo_shake_process(&c, turbo_shake_input_ptn_17_pow_2, sizeof(turbo_shake_input_ptn_17_pow_2));
558+
turbo_shake_done(&c, hash, 64);
559+
if (compare_testvector(hash, 64, turbo_shake_256_ptn_pow_2, sizeof(turbo_shake_256_ptn_pow_2), "TurboSHAKE256", 0)) {
560+
return CRYPT_FAIL_TESTVECTOR;
561+
}
562+
563+
return CRYPT_OK;
564+
#endif
565+
}
566+
#endif
567+
391568
#endif
392569

393570
#ifdef LTC_KECCAK

src/headers/tomcrypt_custom.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,7 @@
258258
#define LTC_WHIRLPOOL
259259
#define LTC_SHA3
260260
#define LTC_KECCAK
261+
#define LTC_TURBO_SHAKE
261262
#define LTC_SHA512
262263
#define LTC_SHA512_256
263264
#define LTC_SHA512_224

src/headers/tomcrypt_hash.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,13 @@ int keccak_224_test(void);
302302
int keccak_done(hash_state *md, unsigned char *out);
303303
#endif
304304

305+
#ifdef LTC_TURBO_SHAKE
306+
#define turbo_shake_init(a, b) sha3_shake_init(a, b)
307+
int turbo_shake_process(hash_state *md, const unsigned char *in, unsigned long inlen);
308+
int turbo_shake_done(hash_state *md, unsigned char *out, unsigned long outlen);
309+
int turbo_shake_test(void);
310+
#endif
311+
305312
#ifdef LTC_SHA512
306313
int sha512_init(hash_state * md);
307314
int sha512_process(hash_state * md, const unsigned char *in, unsigned long inlen);

tests/cipher_hash_test.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ int cipher_hash_test(void)
6060
/* SHAKE128 + SHAKE256 tests are a bit special */
6161
DOX(sha3_shake_test(), "sha3_shake");
6262
#endif
63+
#ifdef LTC_TURBO_SHAKE
64+
DO(turbo_shake_test());
65+
#endif
6366

6467
return 0;
6568
}

0 commit comments

Comments
 (0)