summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorVidya Sagar Velumuri <vvelumuri@marvell.com>2024-03-13 16:28:57 +0530
committerAkhil Goyal <gakhil@marvell.com>2024-03-14 19:05:53 +0100
commit13ff0b347d076bf99ace68695c31b23a8dd5afc1 (patch)
treee6ddbfdd84e36d8b14861f324821c4528adff57a /app
parentc7a068edaba37b38bd7bfe051bd032b08b706650 (diff)
test/crypto: verify TLS 1.3 custom content type
Add unit tests to verify TLS-1.3 record with content type as custom. Signed-off-by: Vidya Sagar Velumuri <vvelumuri@marvell.com> Acked-by: Anoob Joseph <anoobj@marvell.com> Acked-by: Akhil Goyal <gakhil@marvell.com>
Diffstat (limited to 'app')
-rw-r--r--app/test/test_cryptodev.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c
index 9f0a737913..fe4fcfbfdb 100644
--- a/app/test/test_cryptodev.c
+++ b/app/test/test_cryptodev.c
@@ -12438,6 +12438,21 @@ test_tls_1_3_record_proto_corrupt_pkt(void)
return test_tls_record_proto_all(&flags);
}
+
+static int
+test_tls_1_3_record_proto_custom_content_type(void)
+{
+ struct tls_record_test_flags flags = {
+ .content_type = TLS_RECORD_TEST_CONTENT_TYPE_CUSTOM,
+ .tls_version = RTE_SECURITY_VERSION_TLS_1_3
+ };
+ struct crypto_testsuite_params *ts_params = &testsuite_params;
+ struct rte_cryptodev_info dev_info;
+
+ rte_cryptodev_info_get(ts_params->valid_devs[0], &dev_info);
+
+ return test_tls_record_proto_all(&flags);
+}
#endif
static int
@@ -17732,6 +17747,10 @@ static struct unit_test_suite tls13_record_proto_testsuite = {
"TLS-1.3 record header corruption",
ut_setup_security, ut_teardown,
test_tls_1_3_record_proto_corrupt_pkt),
+ TEST_CASE_NAMED_ST(
+ "TLS-1.3 record header with custom content type",
+ ut_setup_security, ut_teardown,
+ test_tls_1_3_record_proto_custom_content_type),
TEST_CASES_END() /**< NULL terminate unit test array */
}
};