File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,11 @@ TEST_CASE test_case[] = {
124124 TEST_DECL (test_aes192_ctr_stream , NULL ),
125125 TEST_DECL (test_aes256_ctr_stream , NULL ),
126126#endif
127+ #ifdef WP_HAVE_AESCFB
128+ TEST_DECL (test_aes128_cfb_stream , NULL ),
129+ TEST_DECL (test_aes192_cfb_stream , NULL ),
130+ TEST_DECL (test_aes256_cfb_stream , NULL ),
131+ #endif
127132#ifdef WP_HAVE_AESGCM
128133 TEST_DECL (test_aes128_gcm , NULL ),
129134 TEST_DECL (test_aes192_gcm , NULL ),
Original file line number Diff line number Diff line change @@ -166,6 +166,14 @@ int test_aes256_ctr_stream(void *data);
166166
167167#endif
168168
169+ #ifdef WP_HAVE_AESCFB
170+
171+ int test_aes128_cfb_stream (void * data );
172+ int test_aes192_cfb_stream (void * data );
173+ int test_aes256_cfb_stream (void * data );
174+
175+ #endif
176+
169177#ifdef WP_HAVE_AESGCM
170178
171179int test_aes128_gcm (void * data );
You can’t perform that action at this time.
0 commit comments