Searched refs:RAND_add (Results 1 – 17 of 17) sorted by relevance
/external/boringssl/src/crypto/rand_extra/ |
D | rand_extra.c | 39 void RAND_add(const void *buf, int num, double entropy) {} in RAND_add() function 57 RAND_add,
|
/external/boringssl/src/include/openssl/ |
D | rand.h | 88 OPENSSL_EXPORT void RAND_add(const void *buf, int num, double entropy);
|
/external/tpm2/ |
D | CpriRNG.c | 94 RAND_add((const void *)entropy, (int) entropySize, 0.0); in _cpri__StirRandom()
|
/external/curl/lib/ |
D | setup-vms.h | 261 #define RAND_add RAND_ADD macro
|
/external/python/cpython2/Lib/ |
D | socket.py | 69 RAND_add, \
|
D | ssl.py | 108 from _ssl import RAND_status, RAND_add
|
/external/python/cpython3/Lib/ |
D | ssl.py | 110 from _ssl import RAND_status, RAND_add, RAND_bytes, RAND_pseudo_bytes
|
/external/python/cpython3/Lib/test/ |
D | test_ssl.py | 207 ssl.RAND_add("this is a random string", 75.0) 208 ssl.RAND_add(b"this is a random bytes object", 75.0) 209 ssl.RAND_add(bytearray(b"this is a random bytearray object"), 75.0)
|
/external/python/cpython3/Doc/library/ |
D | ssl.rst | 306 can be used to check the status of the PRNG and :func:`RAND_add` can be used 343 :func:`ssl.RAND_egd` and :func:`ssl.RAND_add` to increase the randomness of 359 .. function:: RAND_add(bytes, entropy) 2294 successful call of :func:`~ssl.RAND_add`, :func:`~ssl.RAND_bytes` or
|
/external/python/cpython2/Doc/library/ |
D | ssl.rst | 341 :func:`ssl.RAND_egd` and :func:`ssl.RAND_add` to increase the randomness of 357 .. function:: RAND_add(bytes, entropy) 1786 successful call of :func:`~ssl.RAND_add`, :func:`~ssl.RAND_bytes` or
|
/external/curl/lib/vtls/ |
D | openssl.c | 456 RAND_add(randb, (int)len, (double)len/2); in Curl_ossl_seed()
|
/external/python/cpython2/Modules/ |
D | _ssl.c | 3476 RAND_add(buf, (int)written, entropy); in PySSL_RAND_add()
|
/external/python/cpython3/Modules/ |
D | _ssl.c | 4499 RAND_add(buf, (int)written, entropy); in _ssl_RAND_add_impl()
|
/external/python/cpython2/Lib/test/ |
D | test_ssl.py | 181 ssl.RAND_add("this is a random string", 75.0)
|
/external/python/cpython3/Misc/ |
D | NEWS | 7670 - Issue #21781: ssl.RAND_add() now supports strings longer than 2 GB.
|
D | HISTORY | 1578 - Issue #21781: ssl.RAND_add() now supports strings longer than 2 GB. 23896 functions RAND_add(), RAND_egd(), and RAND_status(). These calls
|
/external/python/cpython2/Misc/ |
D | HISTORY | 6517 functions RAND_add(), RAND_egd(), and RAND_status(). These calls
|