|
Revision tags: v22.03, v22.03-rc4, v22.03-rc3, v22.03-rc2, v22.03-rc1, v21.11, v21.11-rc4, v21.11-rc3, v21.11-rc2, v21.11-rc1 |
|
| #
418c1a54 |
| 15-Oct-2021 |
Kai Ji <[email protected]> |
test/crypto: enable chacha_poly PMD
An autotest is added for the new chacha20_poly1305 PMD. A new test case is also added for SGL test.
Signed-off-by: Kai Ji <[email protected]> Signed-off-by: Ciara
test/crypto: enable chacha_poly PMD
An autotest is added for the new chacha20_poly1305 PMD. A new test case is also added for SGL test.
Signed-off-by: Kai Ji <[email protected]> Signed-off-by: Ciara Power <[email protected]> Acked-by: Ray Kinsella <[email protected]> Acked-by: Fan Zhang <[email protected]> Acked-by: Akhil Goyal <[email protected]>
show more ...
|
|
Revision tags: v21.08, v21.08-rc4, v21.08-rc3, v21.08-rc2, v21.08-rc1, v21.05, v21.05-rc4, v21.05-rc3, v21.05-rc2, v21.05-rc1, v21.02, v21.02-rc4, v21.02-rc3, v21.02-rc2, v21.02-rc1, v20.11, v20.11-rc5, v20.11-rc4, v20.11-rc3, v20.11-rc2, v20.11-rc1 |
|
| #
dcdd0169 |
| 12-Oct-2020 |
Pablo de Lara <[email protected]> |
test/crypto: add GMAC SGL
Add Scatter-Gather List tests for AES-GMAC.
Signed-off-by: Pablo de Lara <[email protected]>
|
|
Revision tags: v20.08, v20.08-rc4, v20.08-rc3, v20.08-rc2, v20.08-rc1 |
|
| #
a0e437cc |
| 07-Jul-2020 |
Arek Kusztal <[email protected]> |
test/crypto: add ChaCha20-Poly1305 cases
This patch adds Chacha20-Poly1305 implementation to cryptodev tests.
Signed-off-by: Arek Kusztal <[email protected]> Acked-by: Anoob Joseph <anoo
test/crypto: add ChaCha20-Poly1305 cases
This patch adds Chacha20-Poly1305 implementation to cryptodev tests.
Signed-off-by: Arek Kusztal <[email protected]> Acked-by: Anoob Joseph <[email protected]> Acked-by: Tejasree Kondoj <[email protected]>
show more ...
|
|
Revision tags: v20.05, v20.05-rc4, v20.05-rc3, v20.05-rc2, v20.05-rc1 |
|
| #
305de560 |
| 13-Mar-2020 |
Arek Kusztal <[email protected]> |
test/crypto: add AES-GCM J0 case
This patch adds crypto J0 test case to AES-GCM
Signed-off-by: Arek Kusztal <[email protected]> Acked-by: Fiona Trahe <[email protected]>
|
|
Revision tags: v20.02, v20.02-rc4, v20.02-rc3, v20.02-rc2 |
|
| #
f5862ae9 |
| 05-Feb-2020 |
Thomas Monjalon <[email protected]> |
cryptodev: revert Chacha20-Poly1305 AEAD algorithm
API makes think that rte_cryptodev_info_get() cannot return a value >= 3 (RTE_CRYPTO_AEAD_LIST_END in 19.11). 20.02-rc1 was returning 3 (RTE_CRYPTO
cryptodev: revert Chacha20-Poly1305 AEAD algorithm
API makes think that rte_cryptodev_info_get() cannot return a value >= 3 (RTE_CRYPTO_AEAD_LIST_END in 19.11). 20.02-rc1 was returning 3 (RTE_CRYPTO_AEAD_CHACHA20_POLY1305). So the ABI compatibility contract was broken.
It could be solved with some function versioning, but because a lack of time, the feature is reverted for now.
This reverts following commits: - 6c9f3b347e21 ("cryptodev: add Chacha20-Poly1305 AEAD algorithm") - 2c512e64d600 ("crypto/qat: support Chacha Poly") - d55e01f579e1 ("test/crypto: add Chacha Poly cases")
Signed-off-by: Thomas Monjalon <[email protected]>
show more ...
|
|
Revision tags: v20.02-rc1 |
|
| #
d55e01f5 |
| 15-Jan-2020 |
Arek Kusztal <[email protected]> |
test/crypto: add Chacha Poly cases
This patch adds Chacha20-Poly1305 implementation to cryptodev tests.
Signed-off-by: Arek Kusztal <[email protected]> Acked-by: Fiona Trahe <fiona.trahe
test/crypto: add Chacha Poly cases
This patch adds Chacha20-Poly1305 implementation to cryptodev tests.
Signed-off-by: Arek Kusztal <[email protected]> Acked-by: Fiona Trahe <[email protected]>
show more ...
|
|
Revision tags: v19.11, v19.11-rc4, v19.11-rc3, v19.11-rc2, v19.11-rc1, v19.08, v19.08-rc4, v19.08-rc3, v19.08-rc2, v19.08-rc1, v19.05, v19.05-rc4, v19.05-rc3, v19.05-rc2, v19.05-rc1 |
|
| #
a9de470c |
| 26-Feb-2019 |
Bruce Richardson <[email protected]> |
test: move to app directory
Since all other apps have been moved to the "app" folder, the autotest app remains alone in the test folder. Rather than having an entire top-level folder for this, we ca
test: move to app directory
Since all other apps have been moved to the "app" folder, the autotest app remains alone in the test folder. Rather than having an entire top-level folder for this, we can move it back to where it all started in early versions of DPDK - the "app/" folder.
This move has a couple of advantages: * This reduces clutter at the top level of the project, due to one less folder. * It eliminates the separate build task necessary for building the autotests using make "make test-build" which means that developers are less likely to miss something in their own compilation tests * It re-aligns the final location of the test binary in the app folder when building with make with it's location in the source tree.
For meson builds, the autotest app is different from the other apps in that it needs a series of different test cases defined for it for use by "meson test". Therefore, it does not get built as part of the main loop in the app folder, but gets built separately at the end.
Signed-off-by: Bruce Richardson <[email protected]>
show more ...
|