qcrypto_signature_params_t

Updated: April 19, 2023

Signature parameters

Synopsis:

#include <qcrypto/qcrypto_plugin.h>
typedef struct _qcrypto_signature_params {
    size_t sigsize;
} qcrypto_signature_params_t;

Data:

size_t sigsize

The signature size.

Library:

libqcrypto

Description:

If the sigsize value is set to 0, it is dynamically queried through the qcrypto_signature_ops_t::size function. This configuration is for algorithms where the signature size is not constant (for example, the RSA signature size depends on the key size).