mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
16 lines
364 B
C++
16 lines
364 B
C++
#ifndef IAESENCRYPTION_H
|
|
#define IAESENCRYPTION_H
|
|
|
|
#include <string>
|
|
|
|
#include "../Interface/Object.h"
|
|
|
|
class IAESEncryption : public IObject
|
|
{
|
|
public:
|
|
virtual std::string encrypt(const std::string &data)=0;
|
|
virtual std::string encrypt(const char *data, size_t data_size)=0;
|
|
virtual std::string encrypt(char *data, size_t data_size)=0;
|
|
};
|
|
|
|
#endif |