Symbol: SEEDLEN_BYTES
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
101
const secret uint8_t[SEEDLEN_BYTES]);
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
1074
CHECK(i, "C", D->C, kat[i].C, SEEDLEN_BYTES);
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
1075
CHECK(i, "V[0]", D->V, kat[i].V[0], SEEDLEN_BYTES);
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
1094
CHECK(i, "V[1]", D->V, kat[i].V[1], SEEDLEN_BYTES);
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
1118
CHECK(i, "V[2]", D->V, kat[i].V[2], SEEDLEN_BYTES);
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
141
CTASSERT(sizeof D->V == SEEDLEN_BYTES);
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
149
CTASSERT(sizeof D->C == SEEDLEN_BYTES);
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
173
uint8_t seed[SEEDLEN_BYTES];
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
179
CTASSERT(sizeof D->V == SEEDLEN_BYTES);
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
188
CTASSERT(sizeof D->C == SEEDLEN_BYTES);
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
264
hashgen(secret uint8_t *p, size_t n, const secret uint8_t V[SEEDLEN_BYTES])
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
266
secret uint8_t data[SEEDLEN_BYTES];
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
270
memcpy(data, V, SEEDLEN_BYTES);
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
275
hash_update(&ctx, data, SEEDLEN_BYTES);
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
291
hash_update(&ctx, data, SEEDLEN_BYTES);
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
387
static const uint8_t kat_entropy[3][SEEDLEN_BYTES] = {
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
472
uint8_t C[SEEDLEN_BYTES];
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
473
uint8_t V[3][SEEDLEN_BYTES];