mirror of
https://github.com/libAthena/athena.git
synced 2025-07-09 14:46:02 +00:00
Added virtual destructor to IAES
This commit is contained in:
parent
f3ba8819a4
commit
7442d618e7
2
PKGBUILD
2
PKGBUILD
@ -1,7 +1,7 @@
|
||||
# PKGBUILD for libAthena
|
||||
_pkgname=libathena
|
||||
pkgname=$_pkgname-git
|
||||
pkgver=2.0.0.8.g24fedff
|
||||
pkgver=2.0.0.9.gf3ba881
|
||||
pkgrel=1
|
||||
pkgdesc="Basic cross platform IO library"
|
||||
arch=('i686' 'x86_64')
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user