Updated: October 28, 2024 |
KDF arguments
#include <qcrypto/qcrypto.h>
typedef struct _qcrypto_kdf_args { const uint8_t *secret; size_t secretsize; const uint8_t *salt; size_t saltsize; union { struct { size_t iter; } pbkdf2; struct { const uint8_t *info; size_t infosize; } hkdf; void *private; }; } qcrypto_kdf_args_t;
The secret value.
The size of the secret value, in bytes.
The salt value.
The salt size in bytes.
The number of hash iterations.
Extra information.
The size of the extra information, in bytes
Private arguments to pass for other KDFs.
Some KDF functions require some additional input to be used in 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_kdf_generate().