增加编译控制选项

This commit is contained in:
Simon
2021-07-17 08:56:42 -07:00
parent 4159e6ddf5
commit 5dfd357e16
9 changed files with 78 additions and 4 deletions

View File

@@ -47,6 +47,7 @@
*/
#ifndef NO_AES
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
@@ -478,3 +479,4 @@ void aes_decrypt(const AES_KEY *aes_key, const uint8_t in[16], uint8_t out[16])
memset(state, 0, sizeof(state));
}
#endif