test.c 184 B

12345678910111213141516
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. #define AES_128 128
  5. #define AES_LEN (AES_128/8)
  6. #define DATA_SIZE 32
  7. #ifdef LIB_TEST
  8. int main()
  9. {
  10. return 0;
  11. }
  12. #endif