1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(C) 2021 Marvell. 3 */ 4 5 #ifndef __CNXK_CRYPTODEV_SEC_H__ 6 #define __CNXK_CRYPTODEV_SEC_H__ 7 8 #include <rte_cryptodev.h> 9 10 int cnxk_crypto_sec_ctx_create(struct rte_cryptodev *crypto_dev); 11 12 void cnxk_crypto_sec_ctx_destroy(struct rte_cryptodev *crypto_dev); 13 14 #endif /* __CNXK_CRYPTODEV_SEC_H__ */ 15