Rudiments
aes128.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
4#ifndef RUDIMENTS_AES128_H
5#define RUDIMENTS_AES128_H
6
7#include <rudiments/private/aes128includes.h>
8
10class RUDIMENTS_DLLSPEC aes128 : public encryption {
11 public:
14
17
19 size_t getKeySize();
20
22 size_t getIvSize();
23
29 const byte_t *getEncryptedData();
30
36 const byte_t *getDecryptedData();
37
38 #include <rudiments/private/aes128.h>
39};
40
41#endif
Definition aes128.h:10
size_t getKeySize()
const byte_t * getDecryptedData()
const byte_t * getEncryptedData()
size_t getIvSize()
Definition encryption.h:21