Re: [PATCH v4 2/5] crypto/openssl: only init 3DES-CTR key + impl once

2024-07-01 Thread Ji, Kai
Acked-by: Kai Ji From: Jack Bond-Preston Sent: 07 June 2024 13:47 To: Ji, Kai Cc: dev@dpdk.org ; Wathsala Vithanage Subject: [PATCH v4 2/5] crypto/openssl: only init 3DES-CTR key + impl once Currently the 3DES-CTR cipher context is initialised for every buffer

[PATCH v4 2/5] crypto/openssl: only init 3DES-CTR key + impl once

2024-06-07 Thread Jack Bond-Preston
Currently the 3DES-CTR cipher context is initialised for every buffer, setting the cipher implementation and key - even though for every buffer in the session these values will be the same. Change to initialising the cipher context once, before any buffers are processed, instead. Throughput perfo