| 123456789101112131415161718 |
- #include <stdio.h>
- #include "lib/aes_tests.h"
- int main() {
- aes_test_shift_block();
- aes_test_xtime();
- aes_test_mix_words();
- aes_test_expand_key();
- aes_test_block_cipher();
- aes_test_padding_validation();
- aes_test_create_padding();
- aes_test_cipher();
- printf("OK\n");
- return 0;
- }
|