From: Fan Zhang Date: Fri, 22 Mar 2019 16:34:31 +0000 (+0000) Subject: doc: announce cryptodev xform API change X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=f4dc5af2628fd45aed5ae4cbaae5363e3fa16ddb;p=dpdk.git doc: announce cryptodev xform API change This patch adds the deprecation notice of changing Cryptodev symmetric xform structure. The proposed change is to making key pointers in the crypto xforms (cipher, auth, aead) to indicate neither the library or the drivers will not change the content of the key buffer. Signed-off-by: Fan Zhang Acked-by: Akhil Goyal Acked-by: Fiona Trahe Acked-by: Anoob Joseph --- diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index d5a79a3622..ba39c2d621 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -83,3 +83,7 @@ Deprecation Notices - Member ``uint64_t ff_disable`` in ``rte_cryptodev_config`` The field would be added in v19.08. + +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms + structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and + ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.