changes for formeego, do not use
[googlelatitude] / libkqoauth / kqoauthutils.h
1 /**
2  * KQOAuth - An OAuth authentication library for Qt.
3  *
4  * Author: Johan Paul (johan.paul@d-pointer.com)
5  *         http://www.d-pointer.com
6  *
7  *  KQOAuth is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU Lesser General Public License as published by
9  *  the Free Software Foundation, either version 3 of the License, or
10  *  (at your option) any later version.
11  *
12  *  KQOAuth is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU Lesser General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Lesser General Public License
18  *  along with KQOAuth.  If not, see <http://www.gnu.org/licenses/>.
19  */
20 #ifndef KQOAUTHUTILS_H
21 #define KQOAUTHUTILS_H
22
23 #include "kqoauthglobals.h"
24
25 class QString;
26 class KQOAUTH_EXPORT KQOAuthUtils
27 {
28 public:
29
30     static QString hmac_sha1(const QString &message, const QString &key);
31 };
32
33 #endif // KQOAUTHUTILS_H