aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/crypto
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2019-04-05 19:42:21 +0200
committerDamjan Marion <dmarion@me.com>2019-04-11 08:35:41 +0000
commit61c0a3ddb84b8e43059c619299e12e9c098c7743 (patch)
tree552f6dc09a346819444ce790da521444f6490079 /src/vnet/crypto
parent90cf21b5d8fd2d3e531e841dcd752311df5f8a50 (diff)
crypto: add performace test to unittest plugin
Change-Id: I49c710c5ace24a4c1f083120fd4c2972566a1695 Signed-off-by: Damjan Marion <damarion@cisco.com> Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'src/vnet/crypto')
-rw-r--r--src/vnet/crypto/crypto.h1
-rw-r--r--src/vnet/crypto/format.c21
2 files changed, 22 insertions, 0 deletions
diff --git a/src/vnet/crypto/crypto.h b/src/vnet/crypto/crypto.h
index 5d03d52756e..92b65a4722a 100644
--- a/src/vnet/crypto/crypto.h
+++ b/src/vnet/crypto/crypto.h
@@ -185,6 +185,7 @@ format_function_t format_vnet_crypto_engine;
format_function_t format_vnet_crypto_op;
format_function_t format_vnet_crypto_op_type;
format_function_t format_vnet_crypto_op_status;
+unformat_function_t unformat_vnet_crypto_alg;
static_always_inline void
vnet_crypto_op_init (vnet_crypto_op_t * op, vnet_crypto_op_id_t type)
diff --git a/src/vnet/crypto/format.c b/src/vnet/crypto/format.c
index df811fe4f2f..715941e0ee7 100644
--- a/src/vnet/crypto/format.c
+++ b/src/vnet/crypto/format.c
@@ -26,6 +26,27 @@ format_vnet_crypto_alg (u8 * s, va_list * args)
return format (s, "%s", d->name);
}
+uword
+unformat_vnet_crypto_alg (unformat_input_t * input, va_list * args)
+{
+ vnet_crypto_main_t *cm = &crypto_main;
+ vnet_crypto_alg_t *alg = va_arg (*args, vnet_crypto_alg_t *);
+ uword *p;
+ u8 *name;
+
+ if (!unformat (input, "%s", &name))
+ return 0;
+
+ p = hash_get_mem (cm->alg_index_by_name, name);
+ vec_free (name);
+ if (p == 0)
+ return 0;
+
+ *alg = p[0];
+
+ return 1;
+}
+
u8 *
format_vnet_crypto_op (u8 * s, va_list * args)
{