qcrypto_rng_ops_t

Updated: April 19, 2023

RNG functions

Synopsis:

#include <qcrypto/qcrypto_plugin.h>
typedef struct _qcrypto_rng_ops {
    qcrypto_rng_op_init init;
    qcrypto_rng_op_seed seed;
    qcrypto_rng_op_bytes bytes;
} qcrypto_rng_ops_t;

Data:

qcrypto_rng_op_init init

The RNG initialization function.

qcrypto_rng_op_seed seed

The RNG seed function.

qcrypto_rng_op_bytes bytes

The RNG bytes extraction function.

Library:

libqcrypto