examples/fips_validation: fix parsing of algorithms
authorArchana Muniganti <marchana@marvell.com>
Fri, 17 Apr 2020 15:08:40 +0000 (20:38 +0530)
committerAkhil Goyal <akhil.goyal@nxp.com>
Mon, 11 May 2020 11:17:43 +0000 (13:17 +0200)
Few of the NIST TDES test files don't contain TDES string.
Added indicators to identify such files. These indicators
are part of only NIST TDES test vector files.

Fixes: 527cbf3d5ee3 ("examples/fips_validation: support TDES parsing")
Cc: stable@dpdk.org
Signed-off-by: Archana Muniganti <marchana@marvell.com>
Signed-off-by: Ayuj Verma <ayverma@marvell.com>
Acked-by: Anoob Joseph <anoobj@marvell.com>
examples/fips_validation/fips_validation.c

index ef24b72..a34e34d 100644 (file)
@@ -144,6 +144,24 @@ fips_test_parse_header(void)
                                ret = parse_test_tdes_init();
                                if (ret < 0)
                                        return 0;
+                       } else if (strstr(info.vec[i], "PERMUTATION")) {
+                               algo_parsed = 1;
+                               info.algo = FIPS_TEST_ALGO_TDES;
+                               ret = parse_test_tdes_init();
+                               if (ret < 0)
+                                       return 0;
+                       } else if (strstr(info.vec[i], "VARIABLE")) {
+                               algo_parsed = 1;
+                               info.algo = FIPS_TEST_ALGO_TDES;
+                               ret = parse_test_tdes_init();
+                               if (ret < 0)
+                                       return 0;
+                       } else if (strstr(info.vec[i], "SUBSTITUTION")) {
+                               algo_parsed = 1;
+                               info.algo = FIPS_TEST_ALGO_TDES;
+                               ret = parse_test_tdes_init();
+                               if (ret < 0)
+                                       return 0;
                        } else if (strstr(info.vec[i], "SHA-")) {
                                algo_parsed = 1;
                                info.algo = FIPS_TEST_ALGO_SHA;