digiKam
yfauth.h
Go to the documentation of this file.
1 /* ============================================================
2  *
3  * This file is a part of digiKam project
4  * https://www.digikam.org
5  *
6  * Date : 2010-11-14
7  * Description : Yandex authentication module
8  *
9  * Copyright (C) 2010 by Roman Tsisyk <roman at tsisyk dot com>
10  * Copyright (C) 2010-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
11  *
12  * This program is free software; you can redistribute it
13  * and/or modify it under the terms of the GNU General
14  * Public License as published by the Free Software Foundation;
15  * either version 2, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * ============================================================
23  *
24  * See https://api.yandex.ru/ (ru)
25  * for details
26  */
27 
28 #ifndef DIGIKAM_YF_AUTH_H
29 #define DIGIKAM_YF_AUTH_H
30 
31 // Qt includes
32 
33 #include <QString>
34 
35 namespace YFAuth
36 {
37 
38 QString makeCredentials(const QString& publicKey,
39  const QString& login,
40  const QString& password);
41 
42 } // namespace YFAuth
43 
44 #endif // DIGIKAM_YF_AUTH_H
Definition: yfauth.cpp:40
QString makeCredentials(const QString &publicKey, const QString &login, const QString &password)
Definition: yfauth.cpp:42