DPDK
23.07.0
|
#include <rte_crypto_asym.h>
Data Fields | |
enum rte_crypto_asym_op_type | op_type |
rte_crypto_uint | pkey |
struct rte_crypto_ec_point | q |
rte_crypto_param | message |
rte_crypto_uint | k |
rte_crypto_uint | r |
rte_crypto_uint | s |
ECDSA operation params
Definition at line 571 of file rte_crypto_asym.h.
enum rte_crypto_asym_op_type op_type |
Signature generation or verification
Definition at line 572 of file rte_crypto_asym.h.
rte_crypto_uint pkey |
Private key of the signer for signature generation
Definition at line 575 of file rte_crypto_asym.h.
struct rte_crypto_ec_point q |
Public key of the signer for verification
Definition at line 578 of file rte_crypto_asym.h.
rte_crypto_param message |
Input message digest to be signed or verified
Definition at line 581 of file rte_crypto_asym.h.
The ECDSA per-message secret number, which is an integer in the interval (1, n-1). If the random number is generated by the PMD, the 'rte_crypto_param.data' parameter should be set to NULL.
Definition at line 584 of file rte_crypto_asym.h.
r component of elliptic curve signature output : for signature generation input : for signature verification
Definition at line 591 of file rte_crypto_asym.h.
s component of elliptic curve signature output : for signature generation input : for signature verification
Definition at line 596 of file rte_crypto_asym.h.