]> git.droids-corp.org - dpdk.git/commitdiff
doc: complete crypto sample command line
authorPablo de Lara <pablo.de.lara.guarch@intel.com>
Wed, 26 Jul 2017 00:59:59 +0000 (01:59 +0100)
committerPablo de Lara <pablo.de.lara.guarch@intel.com>
Fri, 28 Jul 2017 16:47:17 +0000 (18:47 +0200)
Documentation of some virtual crypto PMDs have a sample command line
to show how to initialize the device on a specific application,
L2fwd-crypto.

This was meant to be used as a reference, but these lines themselves
do not work, as the sample application used required more parameters,
which are added in this commit to have a fully functional example.

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
Acked-by: John McNamara <john.mcnamara@intel.com>
doc/guides/cryptodevs/aesni_gcm.rst
doc/guides/cryptodevs/aesni_mb.rst
doc/guides/cryptodevs/kasumi.rst
doc/guides/cryptodevs/null.rst
doc/guides/cryptodevs/snow3g.rst
doc/guides/cryptodevs/zuc.rst

index 0bd14acf70c4abb73e1b80468be9a1df3f728351..6e9160aabe76a1ffc94a081112181a2faf5e5854 100644 (file)
@@ -116,4 +116,5 @@ Example:
 
 .. code-block:: console
 
-    ./l2fwd-crypto -l 6 -n 4 --vdev="crypto_aesni_gcm,socket_id=1,max_nb_sessions=128"
+    ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_aesni_gcm,socket_id=0,max_nb_sessions=128" \
+    -- -p 1 --cdev SW --chain AEAD --aead_algo "aes-gcm"
index 3f49246615c2230d401fca4c313f4a83bf63c631..b3b937fe684a7419363bdeda0d514c97410061b1 100644 (file)
@@ -130,7 +130,8 @@ Example:
 
 .. code-block:: console
 
-    ./l2fwd-crypto -l 6 -n 4 --vdev="crypto_aesni_mb,socket_id=1,max_nb_sessions=128"
+    ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_aesni_mb,socket_id=0,max_nb_sessions=128" \
+    -- -p 1 --cdev SW --chain CIPHER_HASH --cipher_algo "aes-cbc" --auth_algo "sha1-hmac"
 
 Extra notes
 -----------
index ee92952290197061feb0d7ee950e3ba34a26790e..573312b452133ff8ecdefcdd8bbb32abbc86fe65 100644 (file)
@@ -119,7 +119,8 @@ Example:
 
 .. code-block:: console
 
-    ./l2fwd-crypto -l 6 -n 4 --vdev="crypto_kasumi,socket_id=1,max_nb_sessions=128"
+    ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_kasumi,socket_id=0,max_nb_sessions=128" \
+    -- -p 1 --cdev SW --chain CIPHER_ONLY --cipher_algo "kasumi-f8"
 
 Extra notes on KASUMI F9
 ------------------------
index 4a3bfdfd2c62827012a6e480a6ee5c2973b813ff..03a3ddc00e96f76eb4dff08c99493bb7fc063bd8 100644 (file)
@@ -93,4 +93,5 @@ Example:
 
 .. code-block:: console
 
-    ./l2fwd-crypto -l 6 -n 4 --vdev="crypto_null,socket_id=1,max_nb_sessions=128"
+    ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_null,socket_id=0,max_nb_sessions=128" \
+    -- -p 1 --cdev SW --chain CIPHER_ONLY --cipher_algo "null"
index 41c48d69c337b29aea24bffa4f6e30c08f6d13c0..8914e29c5a02996412985335dff6d8a184bb0c4a 100644 (file)
@@ -111,4 +111,5 @@ Example:
 
 .. code-block:: console
 
-    ./l2fwd-crypto -l 6 -n 4 --vdev="crypto_snow3g,socket_id=1,max_nb_sessions=128"
+    ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_snow3g,socket_id=0,max_nb_sessions=128" \
+    -- -p 1 --cdev SW --chain CIPHER_ONLY --cipher_algo "snow3g-uea2"
index 7ccd8598b97c83fa4c30e1ace420a263b2a3aee8..7fcfc07740a8c48e9ddf914b997ad72432940131 100644 (file)
@@ -111,4 +111,5 @@ Example:
 
 .. code-block:: console
 
-    ./l2fwd-crypto -l 6 -n 4 --vdev="crypto_zuc,socket_id=1,max_nb_sessions=128"
+    ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_zuc,socket_id=0,max_nb_sessions=128" \
+    -- -p 1 --cdev SW --chain CIPHER_ONLY --cipher_algo "zuc-eea3"