X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/35147d51e3961db75a852368fffa31006da90199..57e1e31dce70a58da1736b9579a869c1df313a13:/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