qcrypto_digest_ops_t

Updated: April 19, 2023

Digest functions

Synopsis:

#include <qcrypto/qcrypto_plugin.h>
typedef struct _qcrypto_digest_ops {
    qcrypto_digest_op_init init;
    qcrypto_digest_op_update update;
    qcrypto_digest_op_final final;
    qcrypto_digest_op_copy copy;
} qcrypto_digest_ops_t;

Data:

qcrypto_digest_op_init init

The digest initialization function.

qcrypto_digest_op_update update

The digest update function.

qcrypto_digest_op_final final

The digest finalization function.

qcrypto_digest_op_copy copy

The digest state copy function.

Library:

libqcrypto