42600bbc01
add device capabilities for supported algorithms, key length etc. Signed-off-by: Gagandeep Singh <g.singh@nxp.com> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
19 lines
435 B
C
19 lines
435 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright 2017-2018 NXP
|
|
*/
|
|
|
|
#ifndef CAAM_JR_CAPABILITIES_H
|
|
#define CAAM_JR_CAPABILITIES_H
|
|
|
|
#include <rte_cryptodev.h>
|
|
#include <rte_security.h>
|
|
|
|
/* Get cryptodev capabilities */
|
|
const struct rte_cryptodev_capabilities *
|
|
caam_jr_get_cryptodev_capabilities(void);
|
|
/* Get security capabilities */
|
|
const struct rte_security_capability *
|
|
caam_jr_get_security_capabilities(void *device);
|
|
|
|
#endif
|