qcrypto_mac_ops_t

Updated: April 19, 2023

MAC functions

Synopsis:

#include <qcrypto/qcrypto_plugin.h>
typedef struct _qcrypto_mac_ops {
    qcrypto_mac_op_init init;
    qcrypto_mac_op_update update;
    qcrypto_mac_op_final final;
} qcrypto_mac_ops_t;

Data:

qcrypto_mac_op_init init

The MAC initialization function.

qcrypto_mac_op_update update

The MAC encryption function.

qcrypto_mac_op_final final

The MAC finalization function.

Library:

libqcrypto