diff options
author | 2025-01-16 12:47:01 +0000 | |
---|---|---|
committer | 2025-01-16 14:53:36 +0000 | |
commit | 4e003776cb9a7f7989ae4c49baec12d74ad16fa7 (patch) | |
tree | 07b2eb1625a37086d4ecc7a6c19d17b18f3b3996 /src/crypto_engines | |
parent | 574c4574cd93e698af74d09992541af04150ead4 (diff) |
crypto: combine sync and async algos and ops
Type: improvement
Change-Id: I4d507b105e5b5ba7dd68d373c7f1ab156a9fc9f1
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/crypto_engines')
-rw-r--r-- | src/crypto_engines/native/crypto_native.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto_engines/native/crypto_native.h b/src/crypto_engines/native/crypto_native.h index 0fcb6a99524..9e2a6b42e52 100644 --- a/src/crypto_engines/native/crypto_native.h +++ b/src/crypto_engines/native/crypto_native.h @@ -25,8 +25,8 @@ typedef struct crypto_native_op_handler { struct crypto_native_op_handler *next; vnet_crypto_op_id_t op_id; - vnet_crypto_ops_handler_t *fn; - vnet_crypto_chained_ops_handler_t *cfn; + vnet_crypto_simple_op_fn_t *fn; + vnet_crypto_chained_op_fn_t *cfn; crypto_native_variant_probe_t *probe; int priority; } crypto_native_op_handler_t; |