diff options
author | George Hazan <george.hazan@gmail.com> | 2013-02-11 12:37:56 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-02-11 12:37:56 +0000 |
commit | cb0c18f39ae48fc5228ad0587e9719c542b086d6 (patch) | |
tree | 0ce79085d17436326da1c37763a2c7ff28e15aec /protocols/JabberG/src/jabber_secur.h | |
parent | 8571aecddecbf82628718b846b68e912b4eb5a45 (diff) |
year fix for stdafx.cpp & Jabber
git-svn-id: http://svn.miranda-ng.org/main/trunk@3551 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_secur.h')
-rw-r--r-- | protocols/JabberG/src/jabber_secur.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/protocols/JabberG/src/jabber_secur.h b/protocols/JabberG/src/jabber_secur.h index 41dfc3eafe..18afe89dfa 100644 --- a/protocols/JabberG/src/jabber_secur.h +++ b/protocols/JabberG/src/jabber_secur.h @@ -3,6 +3,7 @@ Jabber Protocol Plugin for Miranda IM
Copyright (C) 2002-04 Santithorn Bunchua
Copyright (C) 2005-12 George Hazan
+Copyright (C) 2012-13 Miranda NG Project
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
@@ -71,7 +72,7 @@ class TMD5Auth : public TJabberAuth typedef TJabberAuth CSuper;
int iCallCount;
-public:
+public:
TMD5Auth(ThreadData*);
virtual ~TMD5Auth();
@@ -83,14 +84,14 @@ class TScramAuth : public TJabberAuth typedef TJabberAuth CSuper;
char *cnonce, *msg1, *serverSignature;
-public:
+public:
TScramAuth(ThreadData*);
virtual ~TScramAuth();
virtual char* getInitialRequest();
virtual char* getChallenge(const TCHAR *challenge);
virtual bool validateLogin(const TCHAR *challenge);
-
+
void Hi(mir_sha1_byte_t* res , char* passw, size_t passwLen, char* salt, size_t saltLen, int ind);
};
@@ -102,7 +103,7 @@ class TNtlmAuth : public TJabberAuth HANDLE hProvider;
const TCHAR *szHostName;
-public:
+public:
TNtlmAuth(ThreadData*, const char* mechanism, const TCHAR *hostname = NULL);
virtual ~TNtlmAuth();
|