1 /*
2  * Copyright (C) 2010  Tobias Markmann
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  *
18  */
19 
20 #ifndef SCRAMSHA1MESSAGE_H
21 #define SCRAMSHA1MESSAGE_H
22 
23 #include <QByteArray>
24 #include <QString>
25 
26 #include "xmpp/base/randomnumbergenerator.h"
27 
28 namespace XMPP {
29 	class SCRAMSHA1Message
30 	{
31 		public:
32 			SCRAMSHA1Message(const QString& authzid, const QString& authcid, const QByteArray& cnonce, const RandomNumberGenerator& rand);
33 
getValue()34 			const QByteArray& getValue() {
35 				return value_;
36 			}
37 
isValid()38 			bool isValid() const {
39 				return isValid_;
40 			}
41 
42 		private:
43 			QByteArray value_;
44 			bool isValid_;
45 	};
46 }
47 
48 #endif
49