mirror of https://github.com/F-Stack/f-stack.git
17 lines
380 B
C
17 lines
380 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2018 Cavium, Inc
|
|
*/
|
|
|
|
#ifndef _OTX_CRYPTODEV_CAPABILITIES_H_
|
|
#define _OTX_CRYPTODEV_CAPABILITIES_H_
|
|
|
|
#include <rte_cryptodev.h>
|
|
|
|
/*
|
|
* Get capabilities list for the device, based on device type
|
|
*/
|
|
const struct rte_cryptodev_capabilities *
|
|
otx_get_capabilities(uint64_t flags);
|
|
|
|
#endif /* _OTX_CRYPTODEV_CAPABILITIES_H_ */
|