int main(int argc, char **argv) { test_extended_key(); test_serialize(); test_vector_1(); test_vector_2(); // Keep valgrind happy ERR_remove_state(0); return 0; }
int main (void) { setbuf(stdout, NULL); printf ("Performing CCM tests...\n"); test_vector_1 (); test_vector_2 (); test_vector_3 (); test_vector_4 (); test_vector_5 (); test_vector_6 (); test_vector_7 (); test_vector_8 (); printf ("All CCM tests succeeded!\n\n"); return 0; }