Hi
I am interested to do ipsec encoding and decoding in my dpdk application
From my readings, i understand ipsec can be done one time in the nic (inline ipsec) or with multiple calls (rte_cryptodev_enqueue_burst,
rte_cryptodev_dequeue_burst....)
I use rte_eth_rx_burst to read from nic.
“Currently, the security library does not support the case of multi-process. It will be updated in the future releases.” From
https://doc.dpdk.org/guides/prog_guide/rte_security.html
So ipsec also is not supported for multi process application?
Even if done inline by the nic?
And what about non inline ipsec for multi process applications?