From: Emma Finn <emma.finn@intel.com>
To: Kai Ji <kai.ji@intel.com>
Cc: dev@dpdk.org, gakhil@marvell.com, Emma Finn <emma.finn@intel.com>
Subject: [v2] app/crypto-perf: Only run AEAD decrypt with valid test vector file.
Date: Tue, 29 Jul 2025 09:50:45 +0000 [thread overview]
Message-ID: <20250729095045.1293981-1-emma.finn@intel.com> (raw)
In-Reply-To: <20250728080621.1241228-1-emma.finn@intel.com>
The test dummy vector data is incorrect for AEAD decryption, so we should
only run when passed a valid test vector file.
Signed-off-by: Emma Finn <emma.finn@intel.com>
---
app/test-crypto-perf/cperf_options_parsing.c | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/app/test-crypto-perf/cperf_options_parsing.c b/app/test-crypto-perf/cperf_options_parsing.c
index 0e0dc4fd06..12623e4cfe 100644
--- a/app/test-crypto-perf/cperf_options_parsing.c
+++ b/app/test-crypto-perf/cperf_options_parsing.c
@@ -1482,11 +1482,26 @@ cperf_options_check(struct cperf_options *options)
}
}
- if (options->test == CPERF_TEST_TYPE_THROUGHPUT &&
+ if ((options->test == CPERF_TEST_TYPE_THROUGHPUT ||
+ options->test == CPERF_TEST_TYPE_LATENCY) &&
(options->aead_op == RTE_CRYPTO_AEAD_OP_DECRYPT ||
options->auth_op == RTE_CRYPTO_AUTH_OP_VERIFY) &&
!options->out_of_place) {
- RTE_LOG(ERR, USER1, "Only out-of-place is allowed in throughput decryption.\n");
+ RTE_LOG(ERR, USER1, "Only out-of-place is allowed in throughput and"
+ " latency decryption.\n");
+ return -EINVAL;
+ }
+
+ if ((options->test == CPERF_TEST_TYPE_THROUGHPUT ||
+ options->test == CPERF_TEST_TYPE_LATENCY) &&
+ (options->aead_op == RTE_CRYPTO_AEAD_OP_DECRYPT ||
+ options->auth_op == RTE_CRYPTO_AUTH_OP_VERIFY) &&
+ options->test_name == NULL &&
+ options->test_file == NULL) {
+ RTE_LOG(ERR, USER1, "Define path to the file with test"
+ " vectors.\n");
+ RTE_LOG(ERR, USER1, "Define test name to get the correct digest"
+ " from the test vectors.\n");
return -EINVAL;
}
--
2.34.1
next prev parent reply other threads:[~2025-07-29 9:50 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-28 8:06 [PATCH] " Emma Finn
2025-07-29 9:50 ` Emma Finn [this message]
2025-07-29 16:14 ` [v2] " Ji, Kai
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250729095045.1293981-1-emma.finn@intel.com \
--to=emma.finn@intel.com \
--cc=dev@dpdk.org \
--cc=gakhil@marvell.com \
--cc=kai.ji@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).