numam-dpdk/drivers/crypto/nitrox/nitrox_sym.h
Nagadheeraj Rottela 9fdef0cc23 crypto/nitrox: create symmetric cryptodev
Add Nitrox symmetric cryptodev with following operations,
- dev_configure
- dev_start
- dev_stop
- dev_close
- dev_infos_get

Signed-off-by: Nagadheeraj Rottela <rnagadheeraj@marvell.com>
Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
2019-10-09 11:50:12 +02:00

14 lines
304 B
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(C) 2019 Marvell International Ltd.
*/
#ifndef _NITROX_SYM_H_
#define _NITROX_SYM_H_
struct nitrox_device;
int nitrox_sym_pmd_create(struct nitrox_device *ndev);
int nitrox_sym_pmd_destroy(struct nitrox_device *ndev);
#endif /* _NITROX_SYM_H_ */