aboutsummaryrefslogtreecommitdiff
path: root/test/performance/odp_crypto.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/performance/odp_crypto.c')
-rw-r--r--test/performance/odp_crypto.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/performance/odp_crypto.c b/test/performance/odp_crypto.c
index 52af6d2fc..fed3ebad8 100644
--- a/test/performance/odp_crypto.c
+++ b/test/performance/odp_crypto.c
@@ -1,5 +1,5 @@
/* Copyright (c) 2015-2018, Linaro Limited
- * Copyright (c) 2022, Nokia
+ * Copyright (c) 2023, Nokia
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
@@ -1170,6 +1170,12 @@ static int run_measure_one_config(test_run_arg_t *arg)
rc = 1;
}
+#if ODP_VERSION_API >= ODP_VERSION_API_NUM(1, 42, 0)
+ /* Bit mode ciphers can now be used in byte mode. */
+ config->cipher_in_bit_mode = 0;
+ config->auth_in_bit_mode = 0;
+#endif
+
if (rc == 0)
rc = create_session_from_config(&session, config, cargs);
if (rc) {