blob: fc62821bbc703ac572d910ae405005bdc9ef5cf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* 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
*
*/
const struct rte_cryptodev_capabilities *
otx_get_capabilities(void);
#endif /* _OTX_CRYPTODEV_CAPABILITIES_H_ */
|