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