blob: 58ddba16602dddb49b0eb9feabdc49f7494e262b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef CRYPTAES_H
#define CRYPTAES_H
#include "cryptclassevp.h"
#include <QDebug>
class CryptAes : public CryptClassEvp
{
public:
CryptAes();
// CryptClassEvp interface
public:
virtual const EVP_CIPHER *algorithm();
virtual void encrypt();
virtual void decrypt();
};
#endif // CRYPTAES_H
|