Rudiments
aes128.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
4 aes128(aes128 &a) {};
5 aes128 &operator=(aes128 &a) { return *this; };
6
7 private:
8 const byte_t *getData(bool encrypt);
9
10 void newContext();
11 void freeContext();
12
13 void setError(int32_t err);
14
15 aes128private *pvt;
Definition aes128.h:10