Home
last modified time | relevance | path

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

/external/boringssl/src/include/openssl/
Drand.h45 OPENSSL_EXPORT int RAND_load_file(const char *path, long num);
/external/conscrypt/src/main/java/org/conscrypt/
DOpenSSLRandom.java77 int bytesRead = NativeCrypto.RAND_load_file("/dev/urandom", seedLengthInBytes); in seedOpenSSLPRNGFromLinuxRNG()
DOpenSSLSocketImpl.java275 NativeCrypto.RAND_load_file("/dev/urandom", seedLengthInBytes); in startHandshake()
DNativeCrypto.java346 public static native int RAND_load_file(String filename, long max_bytes); in RAND_load_file() method in NativeCrypto
/external/boringssl/src/crypto/rand/
Drand.c154 int RAND_load_file(const char *path, long num) { in RAND_load_file() function
/external/libvncserver/libvncclient/
Dtls_openssl.c136 RAND_load_file("/dev/urandom", 1024); in InitializeTLS()
/external/libvncserver/x11vnc/
Dsslhelper.c2567 bytes = RAND_load_file(file, -1); in init_prng()
2570 ubytes = RAND_load_file("/dev/urandom", 64); in init_prng()
2605 bytes += RAND_load_file("/dev/random", 8); in init_prng()
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp5312 int result = RAND_load_file(file.c_str(), max_bytes);
10740 NATIVE_METHOD(NativeCrypto, RAND_load_file, "(Ljava/lang/String;J)I"),