d5a9ea551f
AES XTS support is added to fips application. Parse test-vectors from input files, populate AES XTS tests and prepare AES XTS operations for fips validation. Signed-off-by: Abed Kamaluddin <akamaluddin@marvell.com> Signed-off-by: Archana Muniganti <marchana@marvell.com> Signed-off-by: Sucharitha Sarananaga <ssarananaga@marvell.com>
24 lines
598 B
Meson
24 lines
598 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
# meson file, for building this example as part of a main DPDK build.
|
|
#
|
|
# To build this example as a standalone application with an already-installed
|
|
# DPDK instance, use 'make'
|
|
|
|
deps += ['cryptodev']
|
|
allow_experimental_apis = true
|
|
sources = files(
|
|
'fips_validation_aes.c',
|
|
'fips_validation.c',
|
|
'fips_validation_hmac.c',
|
|
'fips_validation_tdes.c',
|
|
'fips_validation_gcm.c',
|
|
'fips_validation_cmac.c',
|
|
'fips_validation_ccm.c',
|
|
'fips_validation_sha.c',
|
|
'fips_validation_xts.c',
|
|
'fips_dev_self_test.c',
|
|
'main.c'
|
|
)
|