DPDK
22.03.0
|
#include <rte_crypto_asym.h>
Data Fields | |
enum rte_crypto_asym_op_type | op_type |
rte_crypto_param | message |
rte_crypto_uint | k |
rte_crypto_uint | r |
rte_crypto_uint | s |
rte_crypto_uint | y |
DSA Operations params
Definition at line 423 of file rte_crypto_asym.h.
enum rte_crypto_asym_op_type op_type |
Signature Generation or Verification
Definition at line 424 of file rte_crypto_asym.h.
rte_crypto_param message |
input message to be signed or verified
Definition at line 426 of file rte_crypto_asym.h.
Per-message secret number, which is an integer in the interval (1, q-1). If the random number is generated by the PMD, the 'rte_crypto_param.data' parameter should be set to NULL.
Definition at line 428 of file rte_crypto_asym.h.
dsa sign component 'r' value
output if op_type = sign generate, input if op_type = sign verify
Definition at line 434 of file rte_crypto_asym.h.
dsa sign component 's' value
output if op_type = sign generate, input if op_type = sign verify
Definition at line 440 of file rte_crypto_asym.h.
y : Public key of the signer. y = g^x mod p
Definition at line 446 of file rte_crypto_asym.h.