mirror of
https://github.com/libAthena/athena.git
synced 2025-12-09 05:27:50 +00:00
Added virtual destructor to IAES
This commit is contained in:
@@ -11,6 +11,7 @@ namespace Athena
|
||||
class IAES
|
||||
{
|
||||
public:
|
||||
virtual ~IAES() {}
|
||||
virtual void encrypt(const uint8_t* iv, const uint8_t* inbuf, uint8_t* outbuf, uint64_t len)=0;
|
||||
virtual void decrypt(const uint8_t* iv, const uint8_t* inbuf, uint8_t* outbuf, uint64_t len)=0;
|
||||
virtual void setKey(const uint8_t* key)=0;
|
||||
|
||||
Reference in New Issue
Block a user