aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/CMakeLists.txt
blob: 2a1cc9a9b6bd68ba61982fada13186364eac5099 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
macro(test prefix)
    add_executable(test_${prefix}_encrypt_block ${prefix}_encrypt_block.c)
    target_link_libraries(test_${prefix}_encrypt_block libaesni)
    set_target_properties(test_${prefix}_encrypt_block PROPERTIES OUTPUT_NAME ${prefix}_encrypt_block)

    add_executable(test_${prefix}_decrypt_block ${prefix}_decrypt_block.c)
    target_link_libraries(test_${prefix}_decrypt_block libaesni)
    set_target_properties(test_${prefix}_decrypt_block PROPERTIES OUTPUT_NAME ${prefix}_decrypt_block)
endmacro()

test(aes128ecb)
test(aes128cbc)
test(aes128cfb)
test(aes128ofb)
test(aes128ctr)
test(aes192ecb)
test(aes192cbc)
test(aes192cfb)
test(aes192ofb)
test(aes192ctr)
test(aes256ecb)
test(aes256cbc)
test(aes256cfb)
test(aes256ofb)
test(aes256ctr)