mirror of
https://github.com/sheumann/65816-crypto.git
synced 2025-02-19 17:30:33 +00:00
Allow number of test iters to be given on command line.
This commit is contained in:
parent
d9b8467bb7
commit
18dabeb621
10
aestest.c
10
aestest.c
@ -148,7 +148,12 @@ unsigned long aes128_time_test(unsigned int iters) {
|
||||
print_hexbytes("Decrypted: ", aes_context->data, 16);
|
||||
}
|
||||
|
||||
int main(void) {
|
||||
int main(int argc, char **argv) {
|
||||
unsigned int test_iters = 0;
|
||||
|
||||
if (argc > 1)
|
||||
test_iters = strtoul(argv[1], NULL, 10);
|
||||
|
||||
printf("AES-128 test:\n");
|
||||
aes128_test();
|
||||
|
||||
@ -158,5 +163,6 @@ int main(void) {
|
||||
printf("AES-256 test:\n");
|
||||
aes256_test();
|
||||
|
||||
aes128_time_test(1000);
|
||||
if (test_iters)
|
||||
aes128_time_test(test_iters);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user