add all sorts of shit

This commit is contained in:
Arisotura
2019-06-13 14:41:54 +02:00
parent b03c727fb9
commit 0e421ccebd
13 changed files with 1141 additions and 16 deletions

12
src/tiny-AES-c/aes.hpp Normal file
View File

@ -0,0 +1,12 @@
#ifndef _AES_HPP_
#define _AES_HPP_
#ifndef __cplusplus
#error Do not include the hpp header in a c project!
#endif //__cplusplus
extern "C" {
#include "aes.h"
}
#endif //_AES_HPP_