DPDK 22.11.5
|
#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 529 of file rte_crypto_asym.h.
enum rte_crypto_asym_op_type op_type |
Signature Generation or Verification
Definition at line 530 of file rte_crypto_asym.h.
rte_crypto_param message |
input message to be signed or verified
Definition at line 532 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 534 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 540 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 546 of file rte_crypto_asym.h.
y : Public key of the signer. y = g^x mod p
Definition at line 552 of file rte_crypto_asym.h.