Home
last modified time | relevance | path

Searched refs:DT (Results 1 – 1 of 1) sorted by relevance

/crypto/
Dansi_cprng.c50 unsigned char DT[DEFAULT_BLK_SZ]; member
98 hexdump("Input DT: ", ctx->DT, DEFAULT_BLK_SZ); in _get_more_prng_bytes()
113 memcpy(tmp, ctx->DT, DEFAULT_BLK_SZ); in _get_more_prng_bytes()
171 ctx->DT[i] += 1; in _get_more_prng_bytes()
172 if (ctx->DT[i] != 0) in _get_more_prng_bytes()
179 hexdump("Output DT: ", ctx->DT, DEFAULT_BLK_SZ); in _get_more_prng_bytes()
281 unsigned char *V, unsigned char *DT) in reset_prng_context() argument
299 if (DT) in reset_prng_context()
300 memcpy(ctx->DT, DT, DEFAULT_BLK_SZ); in reset_prng_context()
302 memset(ctx->DT, 0, DEFAULT_BLK_SZ); in reset_prng_context()