OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:entropySize
(Results
1 - 4
of
4
) sorted by null
/external/tpm2/
CpriRNG.c
31
UINT32
entropySize
;
38
for(
entropySize
= 0;
39
entropySize
< MAX_RNG_ENTROPY_SIZE && returnedSize >= 0;
40
entropySize
+= returnedSize)
42
returnedSize = _plat__GetEntropy(&entropy[
entropySize
],
43
MAX_RNG_ENTROPY_SIZE -
entropySize
);
49
RAND_seed(entropy,
entropySize
);
88
INT32
entropySize
,
92
if (
entropySize
>= 0)
94
RAND_add((const void *)entropy, (int)
entropySize
, 0.0)
[
all
...]
CpriRNG_fp.h
22
LIB_EXPORT CRYPT_RESULT _cpri__StirRandom(INT32
entropySize
, BYTE *entropy);
CryptUtil_fp.h
310
void CryptStirRandom(UINT32
entropySize
, // IN: size of entropy buffer
CryptUtil.c
92
UINT32
entropySize
, // IN: size of entropy buffer
98
_cpri__StirRandom(
entropySize
, buffer);
[
all
...]
Completed in 199 milliseconds