libqutim
0.3.1.0
Main Page
Related Pages
Namespaces
Classes
Globals
Globals
File List
cryptoservice.h
Go to the documentation of this file.
1
/****************************************************************************
2
**
3
** qutIM - instant messenger
4
**
5
** Copyright © 2011 Ruslan Nigmatullin <euroelessar@yandex.ru>
6
**
7
*****************************************************************************
8
**
9
** $QUTIM_BEGIN_LICENSE$
10
** This program is free software: you can redistribute it and/or modify
11
** it under the terms of the GNU General Public License as published by
12
** the Free Software Foundation, either version 3 of the License, or
13
** (at your option) any later version.
14
**
15
** This program is distributed in the hope that it will be useful,
16
** but WITHOUT ANY WARRANTY; without even the implied warranty of
17
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18
** See the GNU General Public License for more details.
19
**
20
** You should have received a copy of the GNU General Public License
21
** along with this program. If not, see http://www.gnu.org/licenses/.
22
** $QUTIM_END_LICENSE$
23
**
24
****************************************************************************/
25
26
#ifndef CRYPTOSERVICE_H
27
#define CRYPTOSERVICE_H
28
29
#include "
libqutim_global.h
"
30
#include <QVariant>
31
32
namespace
qutim_sdk_0_3
33
{
34
class
ModuleManager;
35
class
ExtensionInfo;
36
37
class
LIBQUTIM_EXPORT
CryptoService
:
public
QObject
38
{
39
Q_OBJECT
40
public
:
41
static
QVariant crypt(
const
QVariant &value);
42
static
QVariant decrypt(
const
QVariant &value);
43
virtual
QVariant cryptImpl(
const
QVariant &value)
const
= 0;
44
virtual
QVariant decryptImpl(
const
QVariant &value)
const
= 0;
45
virtual
void
setPassword(
const
QString &password,
const
QVariant &data) = 0;
46
virtual
QVariant generateData(
const
QString &profile)
const
= 0;
47
protected
:
48
QVariant variantFromData(
const
QByteArray &data)
const
;
49
QByteArray dataFromVariant(
const
QVariant &val)
const
;
50
public
:
51
CryptoService
();
52
virtual
~
CryptoService
();
53
};
54
}
55
56
#endif // CRYPTOSERVICE_H
57
Generated by Doxygen