aboutsummaryrefslogtreecommitdiff
path: root/test/validation/crypto/crypto.h
diff options
context:
space:
mode:
authorZoltan Kiss <zoltan.kiss@linaro.org>2015-08-04 17:18:41 +0100
committerZoltan Kiss <zoltan.kiss@linaro.org>2015-08-04 17:18:41 +0100
commitf72f9c3b54293ac587de816b0b3fbc50005c1426 (patch)
tree8bd4811b9f18add159e053177cb48131febab2f8 /test/validation/crypto/crypto.h
parentb7bb9f3b117e59a2bd144af3f1c3465dbe636766 (diff)
parent3b09d8928f599c80cae0aa46be8db8ccaf5d800a (diff)
Merge branch 'master' of https://git.linaro.org/lng/odpv1.2.0.0_DPDK_2.0.0
Diffstat (limited to 'test/validation/crypto/crypto.h')
-rw-r--r--test/validation/crypto/crypto.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/validation/crypto/crypto.h b/test/validation/crypto/crypto.h
index 9ab641b15..41dd4ed7d 100644
--- a/test/validation/crypto/crypto.h
+++ b/test/validation/crypto/crypto.h
@@ -7,6 +7,30 @@
#ifndef _ODP_TEST_CRYPTO_H_
#define _ODP_TEST_CRYPTO_H_
+#include <CUnit/Basic.h>
+
+/* test functions: */
+void crypto_test_enc_alg_3des_cbc(void);
+void crypto_test_enc_alg_3des_cbc_ovr_iv(void);
+void crypto_test_dec_alg_3des_cbc(void);
+void crypto_test_dec_alg_3des_cbc_ovr_iv(void);
+void crypto_test_alg_hmac_md5(void);
+
+/* test arrays: */
+extern CU_TestInfo crypto_suite[];
+
+/* test array init/term functions: */
+int crypto_suite_sync_init(void);
+int crypto_suite_async_init(void);
+
+/* test registry: */
+extern CU_SuiteInfo crypto_suites[];
+
+/* executable init/term functions: */
+int crypto_init(void);
+int crypto_term(void);
+
+/* main test program: */
int crypto_main(void);
#endif