1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/security/manager/ssl/src/nsNTLMAuthModule.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,40 @@ 1.4 +/* vim:set ts=2 sw=2 et cindent: */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +#ifndef nsNTLMAuthModule_h__ 1.10 +#define nsNTLMAuthModule_h__ 1.11 + 1.12 +#include "nsIAuthModule.h" 1.13 +#include "nsString.h" 1.14 + 1.15 +class nsNTLMAuthModule : public nsIAuthModule 1.16 +{ 1.17 +public: 1.18 + NS_DECL_ISUPPORTS 1.19 + NS_DECL_NSIAUTHMODULE 1.20 + 1.21 + nsNTLMAuthModule() {} 1.22 + virtual ~nsNTLMAuthModule(); 1.23 + 1.24 + nsresult InitTest(); 1.25 + 1.26 + static void SetSendLM(bool sendLM); 1.27 +private: 1.28 + nsString mDomain; 1.29 + nsString mUsername; 1.30 + nsString mPassword; 1.31 +}; 1.32 + 1.33 +#define NS_NTLMAUTHMODULE_CONTRACTID \ 1.34 + NS_AUTH_MODULE_CONTRACTID_PREFIX "ntlm" 1.35 +#define NS_NTLMAUTHMODULE_CID \ 1.36 +{ /* a4e5888f-4fe4-4632-8e7e-745196ea7c70 */ \ 1.37 + 0xa4e5888f, \ 1.38 + 0x4fe4, \ 1.39 + 0x4632, \ 1.40 + {0x8e, 0x7e, 0x74, 0x51, 0x96, 0xea, 0x7c, 0x70} \ 1.41 +} 1.42 + 1.43 +#endif // nsNTLMAuthModule_h__