Searched refs:DT (Results 1 – 1 of 1) sorted by relevance
/crypto/ |
D | ansi_cprng.c | 42 unsigned char DT[DEFAULT_BLK_SZ]; member 90 hexdump("Input DT: ", ctx->DT, DEFAULT_BLK_SZ); in _get_more_prng_bytes() 105 memcpy(tmp, ctx->DT, DEFAULT_BLK_SZ); in _get_more_prng_bytes() 163 ctx->DT[i] += 1; in _get_more_prng_bytes() 164 if (ctx->DT[i] != 0) in _get_more_prng_bytes() 171 hexdump("Output DT: ", ctx->DT, DEFAULT_BLK_SZ); in _get_more_prng_bytes() 277 const unsigned char *V, const unsigned char *DT) in reset_prng_context() argument 295 if (DT) in reset_prng_context() 296 memcpy(ctx->DT, DT, DEFAULT_BLK_SZ); in reset_prng_context() 298 memset(ctx->DT, 0, DEFAULT_BLK_SZ); in reset_prng_context()
|