4c023b6ebc
Add security ctx in cn10k crypto PMD. Signed-off-by: Anoob Joseph <anoobj@marvell.com> Signed-off-by: Srujana Challa <schalla@marvell.com> Signed-off-by: Tejasree Kondoj <ktejasree@marvell.com> Acked-by: Akhil Goyal <gakhil@marvell.com>
15 lines
345 B
C
15 lines
345 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(C) 2021 Marvell.
|
|
*/
|
|
|
|
#ifndef __CNXK_CRYPTODEV_SEC_H__
|
|
#define __CNXK_CRYPTODEV_SEC_H__
|
|
|
|
#include <rte_cryptodev.h>
|
|
|
|
int cnxk_crypto_sec_ctx_create(struct rte_cryptodev *crypto_dev);
|
|
|
|
void cnxk_crypto_sec_ctx_destroy(struct rte_cryptodev *crypto_dev);
|
|
|
|
#endif /* __CNXK_CRYPTODEV_SEC_H__ */
|