Create aes.hpp

This commit is contained in:
kokke
2017-12-29 16:59:06 +01:00
committed by GitHub
parent 9325c53ea8
commit 22863d50b3

12
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_