X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/2595390c6d97d373253f6397a167875f37a90454..1cec48cc0e608397288ebbdc68768b02b8dcacab:/armsrc/aes.h

diff --git a/armsrc/aes.h b/armsrc/aes.h
index 85944873..6934d690 100644
--- a/armsrc/aes.h
+++ b/armsrc/aes.h
@@ -3,6 +3,8 @@
 * your source which uses these given APIs. (This source is kept under
 * public domain)
 */
+#ifndef __AES_H
+#define __AES_H
 
 // AES context structure
 typedef struct {
@@ -27,4 +29,6 @@ typedef struct {
 
 int AesCtxIni(AesCtx *pCtx, unsigned char *pIV, unsigned char *pKey, unsigned int KeyLen, unsigned char Mode);
 int AesEncrypt(AesCtx *pCtx, unsigned char *pData, unsigned char *pCipher, unsigned int DataLen);
-int AesDecrypt(AesCtx *pCtx, unsigned char *pCipher, unsigned char *pData, unsigned int CipherLen);
\ No newline at end of file
+int AesDecrypt(AesCtx *pCtx, unsigned char *pCipher, unsigned char *pData, unsigned int CipherLen);
+
+#endif
\ No newline at end of file