diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-06-26 14:52:46 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-06-26 19:40:36 +0200 |
commit | 849179ba2739ab9a0ad079384b125d9c1745db5f (patch) | |
tree | 35041f2e915f085cb0c5a87ca6712e97fe43c56c /lib/sslgen.c | |
parent | 6d1ea388cbd9de7f2a944a0c64f5feaec1b1904a (diff) | |
download | curl-849179ba2739ab9a0ad079384b125d9c1745db5f.tar.gz |
SSL cleanup: use crypto functions through the sslgen layer
curl_ntlm_msgs.c would previously use an #ifdef maze and direct
SSL-library calls instead of using the SSL layer we have for this
purpose.
Diffstat (limited to 'lib/sslgen.c')
-rw-r--r-- | lib/sslgen.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/sslgen.c b/lib/sslgen.c index 8cf91f001..286c5ab23 100644 --- a/lib/sslgen.c +++ b/lib/sslgen.c @@ -521,4 +521,19 @@ void Curl_ssl_free_certinfo(struct SessionHandle *data) ci->num_of_certs = 0; } } + +void Curl_ssl_random(struct SessionHandle *data, + unsigned char *entropy, + size_t length) +{ + curlssl_random(data, entropy, length); +} + +void Curl_ssl_md5sum(unsigned char *tmp, /* input */ + size_t tmplen, + unsigned char *md5sum, /* output */ + size_t md5len) +{ + curlssl_md5sum(tmp, tmplen, md5sum, md5len); +} #endif /* USE_SSL */ |