Loading lib/vauth/digest_sspi.c +8 −3 Original line number Original line Diff line number Diff line Loading @@ -54,9 +54,14 @@ */ */ bool Curl_auth_is_digest_supported(void) bool Curl_auth_is_digest_supported(void) { { /* TODO: Return true for now which maintains compatability with the existing PSecPkgInfo SecurityPackage; code */ SECURITY_STATUS status; return TRUE; /* Query the security package for Digest */ status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_DIGEST), &SecurityPackage); return (status == SEC_E_OK ? TRUE : FALSE); } } /* /* Loading lib/vauth/krb5_sspi.c +9 −3 Original line number Original line Diff line number Diff line Loading @@ -50,9 +50,15 @@ */ */ bool Curl_auth_is_gssapi_supported(void) bool Curl_auth_is_gssapi_supported(void) { { /* TODO: Return true for now which maintains compatability with the existing PSecPkgInfo SecurityPackage; code */ SECURITY_STATUS status; return TRUE; /* Query the security package for Kerberos */ status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_KERBEROS), &SecurityPackage); return (status == SEC_E_OK ? TRUE : FALSE); } } /* /* Loading lib/vauth/ntlm_sspi.c +8 −3 Original line number Original line Diff line number Diff line Loading @@ -48,9 +48,14 @@ */ */ bool Curl_auth_is_ntlm_supported(void) bool Curl_auth_is_ntlm_supported(void) { { /* TODO: Return true for now which maintains compatability with the existing PSecPkgInfo SecurityPackage; code */ SECURITY_STATUS status; return TRUE; /* Query the security package for NTLM */ status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_NTLM), &SecurityPackage); return (status == SEC_E_OK ? TRUE : FALSE); } } /* /* Loading lib/vauth/spnego_sspi.c +9 −3 Original line number Original line Diff line number Diff line Loading @@ -50,9 +50,15 @@ */ */ bool Curl_auth_is_spnego_supported(void) bool Curl_auth_is_spnego_supported(void) { { /* TODO: Return true for now which maintains compatability with the existing PSecPkgInfo SecurityPackage; code */ SECURITY_STATUS status; return TRUE; /* Query the security package for Negotiate */ status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_NEGOTIATE), &SecurityPackage); return (status == SEC_E_OK ? TRUE : FALSE); } } /* /* Loading Loading
lib/vauth/digest_sspi.c +8 −3 Original line number Original line Diff line number Diff line Loading @@ -54,9 +54,14 @@ */ */ bool Curl_auth_is_digest_supported(void) bool Curl_auth_is_digest_supported(void) { { /* TODO: Return true for now which maintains compatability with the existing PSecPkgInfo SecurityPackage; code */ SECURITY_STATUS status; return TRUE; /* Query the security package for Digest */ status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_DIGEST), &SecurityPackage); return (status == SEC_E_OK ? TRUE : FALSE); } } /* /* Loading
lib/vauth/krb5_sspi.c +9 −3 Original line number Original line Diff line number Diff line Loading @@ -50,9 +50,15 @@ */ */ bool Curl_auth_is_gssapi_supported(void) bool Curl_auth_is_gssapi_supported(void) { { /* TODO: Return true for now which maintains compatability with the existing PSecPkgInfo SecurityPackage; code */ SECURITY_STATUS status; return TRUE; /* Query the security package for Kerberos */ status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_KERBEROS), &SecurityPackage); return (status == SEC_E_OK ? TRUE : FALSE); } } /* /* Loading
lib/vauth/ntlm_sspi.c +8 −3 Original line number Original line Diff line number Diff line Loading @@ -48,9 +48,14 @@ */ */ bool Curl_auth_is_ntlm_supported(void) bool Curl_auth_is_ntlm_supported(void) { { /* TODO: Return true for now which maintains compatability with the existing PSecPkgInfo SecurityPackage; code */ SECURITY_STATUS status; return TRUE; /* Query the security package for NTLM */ status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_NTLM), &SecurityPackage); return (status == SEC_E_OK ? TRUE : FALSE); } } /* /* Loading
lib/vauth/spnego_sspi.c +9 −3 Original line number Original line Diff line number Diff line Loading @@ -50,9 +50,15 @@ */ */ bool Curl_auth_is_spnego_supported(void) bool Curl_auth_is_spnego_supported(void) { { /* TODO: Return true for now which maintains compatability with the existing PSecPkgInfo SecurityPackage; code */ SECURITY_STATUS status; return TRUE; /* Query the security package for Negotiate */ status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_NEGOTIATE), &SecurityPackage); return (status == SEC_E_OK ? TRUE : FALSE); } } /* /* Loading