diff options
author | robot-contrib <[email protected]> | 2022-09-21 14:47:18 +0300 |
---|---|---|
committer | robot-contrib <[email protected]> | 2022-09-21 14:47:18 +0300 |
commit | f904cb56d9b1584ffcc28e53dec706fe1dc15d6f (patch) | |
tree | fe2764cc64c10b674559b367741a172323b52bcd /contrib/libs/curl/lib/rand.h | |
parent | 37a16126ac62d0af47b33d50c786b9adc009f6f3 (diff) |
Update contrib/libs/curl to 7.85.0
Diffstat (limited to 'contrib/libs/curl/lib/rand.h')
-rw-r--r-- | contrib/libs/curl/lib/rand.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/libs/curl/lib/rand.h b/contrib/libs/curl/lib/rand.h index 2f442f5816e..99f25b94e1e 100644 --- a/contrib/libs/curl/lib/rand.h +++ b/contrib/libs/curl/lib/rand.h @@ -48,4 +48,10 @@ CURLcode Curl_rand(struct Curl_easy *data, unsigned char *rnd, size_t num); CURLcode Curl_rand_hex(struct Curl_easy *data, unsigned char *rnd, size_t num); +#ifdef WIN32 +/* Random generator shared between the Schannel vtls and Curl_rand*() + functions */ +CURLcode Curl_win32_random(unsigned char *entropy, size_t length); +#endif + #endif /* HEADER_CURL_RAND_H */ |