Updated: October 28, 2024 |
Signature arguments
#include <qcrypto/qcrypto.h>
typedef struct _qcrypto_signature_args { qcrypto_signature_mode_t mode; union { struct { qcrypto_rsa_pad_mode_t pad_mode; size_t saltsize; } rsa; void* private; }; } qcrypto_signature_args_t;
The signature operation type.
The padding mode.
The PSS salt size.
Private arguments to pass for other signature algorithms.
Some signature modes require additional arguments as input to configure the algorithm. The private field can be used for custom plugins that implement custom algorithms that the QNX cryptography library API does not support.
For more information, see qcrypto_signature_init().