1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2018 Cavium, Inc 3 */ 4 5 #ifndef _OTX_CRYPTODEV_CAPABILITIES_H_ 6 #define _OTX_CRYPTODEV_CAPABILITIES_H_ 7 8 #include <rte_cryptodev.h> 9 10 /* 11 * Get capabilities list for the device, based on device type 12 */ 13 const struct rte_cryptodev_capabilities * 14 otx_get_capabilities(uint64_t flags); 15 16 #endif /* _OTX_CRYPTODEV_CAPABILITIES_H_ */ 17