* [dpdk-dev] [dpdk-dev, v1, 3/3] doc: update cryptodev documentation for set/get private data @ 2018-04-04 6:34 Abhinandan Gujjar 2018-04-10 9:21 ` Akhil Goyal 2018-04-13 19:07 ` De Lara Guarch, Pablo 0 siblings, 2 replies; 4+ messages in thread From: Abhinandan Gujjar @ 2018-04-04 6:34 UTC (permalink / raw) To: pablo.de.lara.guarch, declan.doherty, jerin.jacob, hemant.agrawal, akhil.goyal, dev Cc: narender.vangati, abhinandan.gujjar, nikhil.rao Signed-off-by: Abhinandan Gujjar <abhinandan.gujjar@intel.com> --- doc/guides/prog_guide/cryptodev_lib.rst | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/doc/guides/prog_guide/cryptodev_lib.rst b/doc/guides/prog_guide/cryptodev_lib.rst index 066fe2d..57b3f6e 100644 --- a/doc/guides/prog_guide/cryptodev_lib.rst +++ b/doc/guides/prog_guide/cryptodev_lib.rst @@ -299,6 +299,32 @@ directly from the devices processed queue, and for virtual device's from a enqueue call. +Set/Get private data +~~~~~~~~~~~~~~~~~~~~ +For session-based operations, the set and get API provides a mechanism for an +application to store and retrieve the private data information stored along with +the rte_cryptodev_sym_session session. + +For example, suppose an application is submitting a rte_cryptodev_sym_session +operation and wants to indicate private data information is required to be used +after completion of the rte_cryptodev_sym_session operation. In this case, the +application can use the set API to set the private data and retrieve it using get API. + +.. code-block:: c + + int rte_cryptodev_sym_session_set_private_data( + struct rte_cryptodev_sym_session *sess, void *data, uint16_t size); + + void * rte_cryptodev_sym_session_get_private_data( + struct rte_cryptodev_sym_session *sess); + + +For session-less mode, the private data information can be placed along with the +``struct rte_crypto_op``. The ``rte_crypto_op::private_data_offset`` indicates the start +of private data information. The offset is counted from the start of the rte_crypto_op +including initialization vector (IV). + + Enqueue / Dequeue Burst APIs ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- 1.9.1 ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [dpdk-dev, v1, 3/3] doc: update cryptodev documentation for set/get private data 2018-04-04 6:34 [dpdk-dev] [dpdk-dev, v1, 3/3] doc: update cryptodev documentation for set/get private data Abhinandan Gujjar @ 2018-04-10 9:21 ` Akhil Goyal 2018-04-12 6:30 ` Gujjar, Abhinandan S 2018-04-13 19:07 ` De Lara Guarch, Pablo 1 sibling, 1 reply; 4+ messages in thread From: Akhil Goyal @ 2018-04-10 9:21 UTC (permalink / raw) To: Abhinandan Gujjar, pablo.de.lara.guarch, declan.doherty, jerin.jacob, hemant.agrawal, dev Cc: narender.vangati, nikhil.rao Hi Abhinandan, One minor comment. Series Acked-by: Akhil Goyal <akhil.goyal@nxp.com> On 4/4/2018 12:04 PM, Abhinandan Gujjar wrote: > Signed-off-by: Abhinandan Gujjar <abhinandan.gujjar@intel.com> > --- > doc/guides/prog_guide/cryptodev_lib.rst | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > > diff --git a/doc/guides/prog_guide/cryptodev_lib.rst b/doc/guides/prog_guide/cryptodev_lib.rst > index 066fe2d..57b3f6e 100644 > --- a/doc/guides/prog_guide/cryptodev_lib.rst > +++ b/doc/guides/prog_guide/cryptodev_lib.rst > @@ -299,6 +299,32 @@ directly from the devices processed queue, and for virtual device's from a > enqueue call. > > > +Set/Get private data > +~~~~~~~~~~~~~~~~~~~~ > +For session-based operations, the set and get API provides a mechanism for an > +application to store and retrieve the private data information stored along with > +the rte_cryptodev_sym_session session. > + > +For example, suppose an application is submitting a rte_cryptodev_sym_session > +operation and wants to indicate private data information is required to be used wants to indicate private data information which is required > +after completion of the rte_cryptodev_sym_session operation. In this case, the > +application can use the set API to set the private data and retrieve it using get API. > + > +.. code-block:: c > + > + int rte_cryptodev_sym_session_set_private_data( > + struct rte_cryptodev_sym_session *sess, void *data, uint16_t size); > + > + void * rte_cryptodev_sym_session_get_private_data( > + struct rte_cryptodev_sym_session *sess); > + > + > +For session-less mode, the private data information can be placed along with the > +``struct rte_crypto_op``. The ``rte_crypto_op::private_data_offset`` indicates the start > +of private data information. The offset is counted from the start of the rte_crypto_op > +including initialization vector (IV). > + > + > Enqueue / Dequeue Burst APIs > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [dpdk-dev, v1, 3/3] doc: update cryptodev documentation for set/get private data 2018-04-10 9:21 ` Akhil Goyal @ 2018-04-12 6:30 ` Gujjar, Abhinandan S 0 siblings, 0 replies; 4+ messages in thread From: Gujjar, Abhinandan S @ 2018-04-12 6:30 UTC (permalink / raw) To: Akhil Goyal, De Lara Guarch, Pablo, Doherty, Declan, jerin.jacob, hemant.agrawal, dev Cc: Vangati, Narender, Rao, Nikhil > -----Original Message----- > From: Akhil Goyal [mailto:akhil.goyal@nxp.com] > Sent: Tuesday, April 10, 2018 2:52 PM > To: Gujjar, Abhinandan S <abhinandan.gujjar@intel.com>; De Lara Guarch, Pablo > <pablo.de.lara.guarch@intel.com>; Doherty, Declan > <declan.doherty@intel.com>; jerin.jacob@caviumnetworks.com; > hemant.agrawal@nxp.com; dev@dpdk.org > Cc: Vangati, Narender <narender.vangati@intel.com>; Rao, Nikhil > <nikhil.rao@intel.com> > Subject: Re: [dpdk-dev, v1, 3/3] doc: update cryptodev documentation for > set/get private data > > Hi Abhinandan, > > One minor comment. > Series > Acked-by: Akhil Goyal <akhil.goyal@nxp.com> > > On 4/4/2018 12:04 PM, Abhinandan Gujjar wrote: > > Signed-off-by: Abhinandan Gujjar <abhinandan.gujjar@intel.com> > > --- > > doc/guides/prog_guide/cryptodev_lib.rst | 26 > ++++++++++++++++++++++++++ > > 1 file changed, 26 insertions(+) > > > > diff --git a/doc/guides/prog_guide/cryptodev_lib.rst > > b/doc/guides/prog_guide/cryptodev_lib.rst > > index 066fe2d..57b3f6e 100644 > > --- a/doc/guides/prog_guide/cryptodev_lib.rst > > +++ b/doc/guides/prog_guide/cryptodev_lib.rst > > @@ -299,6 +299,32 @@ directly from the devices processed queue, and for > virtual device's from a > > enqueue call. > > > > > > +Set/Get private data > > +~~~~~~~~~~~~~~~~~~~~ > > +For session-based operations, the set and get API provides a > > +mechanism for an application to store and retrieve the private data > > +information stored along with the rte_cryptodev_sym_session session. > > + > > +For example, suppose an application is submitting a > > +rte_cryptodev_sym_session operation and wants to indicate private > > +data information is required to be used > wants to indicate private data information which is required Sure Akhil. Thanks for reviewing. > > > +after completion of the rte_cryptodev_sym_session operation. In this > > +case, the application can use the set API to set the private data and retrieve it > using get API. > > + > > +.. code-block:: c > > + > > + int rte_cryptodev_sym_session_set_private_data( > > + struct rte_cryptodev_sym_session *sess, void *data, uint16_t > size); > > + > > + void * rte_cryptodev_sym_session_get_private_data( > > + struct rte_cryptodev_sym_session *sess); > > + > > + > > +For session-less mode, the private data information can be placed > > +along with the ``struct rte_crypto_op``. The > > +``rte_crypto_op::private_data_offset`` indicates the start of private > > +data information. The offset is counted from the start of the rte_crypto_op > including initialization vector (IV). > > + > > + > > Enqueue / Dequeue Burst APIs > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > > > ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [dpdk-dev, v1, 3/3] doc: update cryptodev documentation for set/get private data 2018-04-04 6:34 [dpdk-dev] [dpdk-dev, v1, 3/3] doc: update cryptodev documentation for set/get private data Abhinandan Gujjar 2018-04-10 9:21 ` Akhil Goyal @ 2018-04-13 19:07 ` De Lara Guarch, Pablo 1 sibling, 0 replies; 4+ messages in thread From: De Lara Guarch, Pablo @ 2018-04-13 19:07 UTC (permalink / raw) To: Gujjar, Abhinandan S, Doherty, Declan, jerin.jacob, hemant.agrawal, akhil.goyal, dev Cc: Vangati, Narender, Rao, Nikhil > -----Original Message----- > From: Gujjar, Abhinandan S > Sent: Wednesday, April 4, 2018 7:35 AM > To: De Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>; Doherty, Declan > <declan.doherty@intel.com>; jerin.jacob@caviumnetworks.com; > hemant.agrawal@nxp.com; akhil.goyal@nxp.com; dev@dpdk.org > Cc: Vangati, Narender <narender.vangati@intel.com>; Gujjar, Abhinandan S > <abhinandan.gujjar@intel.com>; Rao, Nikhil <nikhil.rao@intel.com> > Subject: [dpdk-dev,v1,3/3] doc: update cryptodev documentation for set/get > private data Better to rewrite title to something shorter, like "doc: add private data info in crypto guide". > > Signed-off-by: Abhinandan Gujjar <abhinandan.gujjar@intel.com> > --- > doc/guides/prog_guide/cryptodev_lib.rst | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > > diff --git a/doc/guides/prog_guide/cryptodev_lib.rst > b/doc/guides/prog_guide/cryptodev_lib.rst > index 066fe2d..57b3f6e 100644 > --- a/doc/guides/prog_guide/cryptodev_lib.rst > +++ b/doc/guides/prog_guide/cryptodev_lib.rst > @@ -299,6 +299,32 @@ directly from the devices processed queue, and for > virtual device's from a enqueue call. > > > +Set/Get private data > +~~~~~~~~~~~~~~~~~~~~ I would change the title of this section to "Private data". > +For session-based operations, the set and get API provides a mechanism > +for an application to store and retrieve the private data information > +stored along with the rte_cryptodev_sym_session session. Change to "along with the crypto session". > + > +For example, suppose an application is submitting a > +rte_cryptodev_sym_session operation and wants to indicate private data I would reword this and not use "rte_cryptodev_sym_session operation", because it means nothing. Better "submitting a crypto operation with a session associated". > +information is required to be used after completion of the > +rte_cryptodev_sym_session operation. In this case, the application can use the > set API to set the private data and retrieve it using get API. > + > +.. code-block:: c > + > + int rte_cryptodev_sym_session_set_private_data( > + struct rte_cryptodev_sym_session *sess, void *data, uint16_t > size); > + > + void * rte_cryptodev_sym_session_get_private_data( > + struct rte_cryptodev_sym_session *sess); > + > + > +For session-less mode, the private data information can be placed along > +with the ``struct rte_crypto_op``. The > +``rte_crypto_op::private_data_offset`` indicates the start of private > +data information. The offset is counted from the start of the rte_crypto_op > including initialization vector (IV). Including other crypto information such as the IVs (since there can be an IV also for authentication). Thanks, Pablo ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-04-13 19:07 UTC | newest] Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2018-04-04 6:34 [dpdk-dev] [dpdk-dev, v1, 3/3] doc: update cryptodev documentation for set/get private data Abhinandan Gujjar 2018-04-10 9:21 ` Akhil Goyal 2018-04-12 6:30 ` Gujjar, Abhinandan S 2018-04-13 19:07 ` De Lara Guarch, Pablo
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).