Symbol: shake
lib/crypto/mldsa.c
130
struct shake_ctx shake;
lib/crypto/mldsa.c
387
size_t seed_len, int tau, struct shake_ctx *shake)
lib/crypto/mldsa.c
392
shake256_init(shake);
lib/crypto/mldsa.c
393
shake_update(shake, seed, seed_len);
lib/crypto/mldsa.c
394
shake_squeeze(shake, (u8 *)&signs, sizeof(signs));
lib/crypto/mldsa.c
399
shake_squeeze(shake, &j, 1);
lib/crypto/mldsa.c
415
__le16 row_and_column, struct shake_ctx *shake,
lib/crypto/mldsa.c
418
shake128_init(shake);
lib/crypto/mldsa.c
419
shake_update(shake, rho, RHO_LEN);
lib/crypto/mldsa.c
420
shake_update(shake, (u8 *)&row_and_column, sizeof(row_and_column));
lib/crypto/mldsa.c
422
shake_squeeze(shake, block, SHAKE128_BLOCK_SIZE);
lib/crypto/mldsa.c
569
&ws->shake);
lib/crypto/mldsa.c
574
shake256_init(&ws->shake);
lib/crypto/mldsa.c
575
shake_update(&ws->shake, ws->tr, sizeof(ws->tr));
lib/crypto/mldsa.c
576
shake_update(&ws->shake, msg_prefix, sizeof(msg_prefix));
lib/crypto/mldsa.c
577
shake_update(&ws->shake, msg, msg_len);
lib/crypto/mldsa.c
578
shake_squeeze(&ws->shake, ws->mu, sizeof(ws->mu));
lib/crypto/mldsa.c
581
shake256_init(&ws->shake);
lib/crypto/mldsa.c
582
shake_update(&ws->shake, ws->mu, sizeof(ws->mu));
lib/crypto/mldsa.c
637
shake_update(&ws->shake, ws->w1_encoded, w1_enc_len);
lib/crypto/mldsa.c
641
shake_squeeze(&ws->shake, ws->ctildeprime, params->ctilde_len);
lib/crypto/tests/sha3_kunit.c
288
shake(alg, in, in_len, out, out_len);
lib/crypto/tests/sha3_kunit.c
334
shake(alg, in, in_len, ref_out, out_len);
lib/crypto/tests/sha3_kunit.c
385
shake(alg, reg_buf, len, reg_buf, len);
lib/crypto/tests/sha3_kunit.c
386
shake(alg, guarded_buf, len, guarded_buf, len);