OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:reseed_counter
(Results
1 - 7
of
7
) sorted by relevancy
/src/sys/crypto/nist_hash_drbg/
nist_hash_drbg.h
71
unsigned
reseed_counter
;
member in struct:nist_hash_drbg
nist_hash_drbg.c
111
D->
reseed_counter
= UINT_MAX; /* paranoia: make generate fail */
149
/* 5.
reseed_counter
= 1 */
150
D->
reseed_counter
= 1;
189
/* 5.
reseed_counter
= 1 */
190
D->
reseed_counter
= 1;
206
uint8_t
reseed_counter
[4];
211
* 1. If
reseed_counter
> reseed_interval, then return an
214
if (D->
reseed_counter
> NIST_HASH_DRBG_RESEED_INTERVAL)
243
/* 5. V = (V + H + C +
reseed_counter
) mod 2^seedlen */
244
be32enc(
reseed_counter
, D->reseed_counter)
202
uint8_t
reseed_counter
[4];
local
1061
unsigned
reseed_counter
;
local
[
all
...]
/src/crypto/external/apache2/openssl/dist/providers/implementations/rands/
drbg_hash.c
343
int
reseed_counter
= drbg->generate_counter;
local
345
counter[0] = (unsigned char)((
reseed_counter
>> 24) & 0xff);
346
counter[1] = (unsigned char)((
reseed_counter
>> 16) & 0xff);
347
counter[2] = (unsigned char)((
reseed_counter
>> 8) & 0xff);
348
counter[3] = (unsigned char)(
reseed_counter
& 0xff);
359
/* (Step 5) V = (V + H + C +
reseed_counter
) mod (2^seedlen_bits) */
362
/* V = (V +
reseed_counter
) mod (2^seedlen_bits) */
drbg_local.h
121
* (Starts at 1). This value is the
reseed_counter
as defined in
147
TSAN_QUALIFIER unsigned int
reseed_counter
;
member in struct:prov_drbg_st
/src/crypto/external/bsd/openssl/dist/providers/implementations/rands/
drbg_hash.c
329
int
reseed_counter
= drbg->generate_counter;
local
331
counter[0] = (unsigned char)((
reseed_counter
>> 24) & 0xff);
332
counter[1] = (unsigned char)((
reseed_counter
>> 16) & 0xff);
333
counter[2] = (unsigned char)((
reseed_counter
>> 8) & 0xff);
334
counter[3] = (unsigned char)(
reseed_counter
& 0xff);
345
/* (Step 5) V = (V + H + C +
reseed_counter
) mod (2^seedlen_bits) */
348
/* V = (V +
reseed_counter
) mod (2^seedlen_bits) */
drbg_local.h
137
* (Starts at 1). This value is the
reseed_counter
as defined in
163
TSAN_QUALIFIER unsigned int
reseed_counter
;
member in struct:prov_drbg_st
/src/crypto/external/bsd/openssl.old/dist/crypto/rand/
rand_local.h
267
TSAN_QUALIFIER unsigned int
reseed_counter
;
member in struct:rand_drbg_st
Completed in 52 milliseconds
Indexes created Sun Mar 01 05:31:48 UTC 2026