xref: /spdk/module/accel/dpdk_cryptodev/accel_dpdk_cryptodev.h (revision 8afdeef3becfe9409cc9e7372bd0bc10e8b7d46d)
1 /*   SPDX-License-Identifier: BSD-3-Clause
2  *   Copyright (c) Intel Corporation.
3  *   Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES.
4  *   All rights reserved.
5  */
6 
7 #ifndef SPDK_ACCEL_DPDK_CRYPTODEV_H
8 #define SPDK_ACCEL_DPDK_CRYPTODEV_H
9 
10 #include "spdk/stdinc.h"
11 
12 void accel_dpdk_cryptodev_enable(void);
13 int accel_dpdk_cryptodev_set_driver(const char *driver_name);
14 const char *accel_dpdk_cryptodev_get_driver(void);
15 
16 #endif /* SPDK_ACCEL_DPDK_CRYPTODEV_H */
17