- Jun 19, 2012
-
-
Mark Salisbury authored
curl_schannel.c - auto certificate validation doesn't seem to work right on CE. I added a method to perform the certificate validation which uses CertGetCertificateChain and manually handles the result.
-
Mark Salisbury authored
Added helper methods InitSecBuffer() and InitSecBufferDesc() to make it easier to set up SecBuffer & SecBufferDesc structs.
-
- Jun 18, 2012
-
-
Guenter Knauf authored
-
Yang Tse authored
-
Mark Salisbury authored
-
Mark Salisbury authored
-
- Jun 16, 2012
-
-
Yang Tse authored
Avoid usage of some MS type synonyms to allow compilation with compiler headers that don't define these, using simpler synonyms.
-
- Jun 15, 2012
-
-
Daniel Stenberg authored
Coverity actually pointed out flawed logic in the previous call to Curl_strntoupper() where the code used sizeof() of a pointer to pass in a size argument. That code still worked since it only needed to uppercase 4 letters. Still, the entire malloc/uppercase/free sequence was pointless since the code has already matched the string once in the condition that starts the block of code.
-
Daniel Stenberg authored
As spotted by Coverity, va_end() was not used previously. To make it used I took away a bunch of return statements and made them into assignments instead.
-
Yang Tse authored
-
Mark Salisbury authored
-
Yang Tse authored
-
Mark Salisbury authored
SSPI related code now compiles with ANSI and WCHAR versions of security methods (WinCE requires WCHAR versions of methods). Pulled UTF8 to WCHAR conversion methods out of idn_win32.c into their own file. curl_sasl.c - include curl_memory.h to use correct memory functions. getenv.c and telnet.c - WinCE compatibility fix With some committer adjustments
-
Guenter Knauf authored
-
- Jun 14, 2012
-
-
Yang Tse authored
As per request on mailing list: http://curl.haxx.se/mail/lib-2012-06/0222.html
-
Marc Hoersken authored
The changes introduced in commit 2bfa57bc are not enough to make it actually possible to use the USE_WINSSL option. Makefile.vc was not updated and the configuration name which is used in the build path did not match between both build files. This patch fixes those issues and introduces the following changes: - Replaced the -schannel name with -winssl in order to be consistent with the other options - Added ENABLE_WINSSL option to winbuild/Makefile.vc (default yes) - Changed winbuild/MakefileBuild.vc to set USE_WINSSL to true if USE_SSL is false and USE_WINSSL was not specified as a parameter - Separated WINSSL handling from SSPI handling to be consistent with the other options and their corresponding code path
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
Calls to failf() are not supposed to provide trailing newline. Calls to infof() must provide trailing newline. Fixed 30 or so strings.
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
- Jun 13, 2012
-
-
Gisle Vanem authored
Building with CyaSSL failed compilation. Reason being that OCSP_REQUEST and OCSP_RESPONSE are enum values in CyaSSL and defines in <wincrypt.h> included via <winldap.h> in ldap.c. http://curl.haxx.se/mail/lib-2012-06/0196.html
-
Yang Tse authored
In order to use Windows native SSL support define 'USE_WINSSL'
-
Yang Tse authored
This option may be used to build curl/libcurl using SSL/TLS support provided by MS windows system libraries. Option is mutually exclusive with any other SSL library. Default value is --without-winssl. --with-winssl option implies --with-sspi option. Option meaningful only for Windows builds.
-
Guenter Knauf authored
This is more descriptive for the user who might not even know what schannnel is at all.
-
Yang Tse authored
Version number is removed in order to make this info consistent with how we do it with other MS and Linux system libraries for which we don't provide this info. Identifier changed from 'WinSSPI' to 'schannel' given that this is the actual provider of the SSL/TLS support. libcurl can still be built with SSPI and without SCHANNEL support.
-
- Jun 12, 2012
-
-
Daniel Stenberg authored
No need to check if 'entry' is non-NULL in a spot where it is already checked and guaranteed to be non-NULL. (Spotted by a Coverity scan)
-
Daniel Stenberg authored
Remove two states from the enum and the corresponding code for them as these states were never reached or used. (Spotted by a Coverity scan)
-
Yang Tse authored
-
Marc Hoersken authored
Removed obsolete minor status variable and parameter of status function which was never used or set at all. Also Curl_sspi_strerror does support only one status and there is no need for a second sub status.
-
Guenter Knauf authored
-
Yang Tse authored
-
Yang Tse authored
-
- Jun 11, 2012
-
-
Yang Tse authored
-
Yang Tse authored
-
Daniel Stenberg authored
Make sure CURL_VERSION_SSPI is present and works as in previous releases for ABI and API compatibility reasons.
-