aes_tests.h 334 B

12345678910111213141516
  1. #ifndef AES_TESTS_H
  2. #define AES_TESTS_H
  3. #include <stdint.h>
  4. #include <stddef.h>
  5. void aes_test_shift_block();
  6. void aes_test_xtime();
  7. void aes_test_mix_words();
  8. void aes_test_expand_key();
  9. void aes_test_block_cipher();
  10. void aes_test_padding_validation();
  11. void aes_test_create_padding();
  12. void aes_test_cipher();
  13. #endif // AES_TESTS_H