> In the example application the key can be provided by the user or > generated randomly by the example application. > > Then a validation is done in order to check if the key size is > supported in the algorithm capabilities. > > As a result of patch [1] application should support the case where a > user supplies a wrapped key. > > In order to align with this patch and be able to use the app with > wrapped keys, app should remove the validation of key size in the > application and rely on a PMD key size validation. > > The validation is removed in case the key is provided by user and > the RTE_CRYPTODEV_FF_CIPHER_WRAPPED_KEY feature flag is set, and > kept in case the key should be generated by the application or > RTE_CRYPTODEV_FF_CIPHER_WRAPPED_KEY is not set. > > [1] https://www.mail-archive.com/dev@dpdk.org/msg204836.html > > Signed-off-by: Shiri Kuzin <shi...@nvidia.com> > Acked-by: Matan Azrad <ma...@nvidia.com> > --- Acked-by: Akhil Goyal <gak...@marvell.com>
Applied to dpdk-next-crypto Patch description is changes as below while applying. examples/l2fwd-crypto: remove key size validation In the example application the key can be provided by the user or generated randomly by the example application. Then a validation is done in order to check if the key size is supported in the algorithm capabilities. A new feature flag is added in crypto PMDs to allow wrapped keys, hence, to allow wrapped keys, app should remove the validation of key size in the application and rely on a PMD key size validation. The validation is removed in case the key is provided by user and the RTE_CRYPTODEV_FF_CIPHER_WRAPPED_KEY feature flag is set, and kept in case the key should be generated by the application or RTE_CRYPTODEV_FF_CIPHER_WRAPPED_KEY is not set.