devcrypto_mac_ops_t

Updated: April 19, 2023

MAC algorithm functions

Synopsis:

#include <dev/crypto/devcrypto_plugin.h>
typedef struct _devcrypto_mac_ops {
    devcrypto_mac_op_init init;
    devcrypto_mac_op_update update;
    devcrypto_mac_op_final final;
} devcrypto_mac_ops_t;

Data:

devcrypto_mac_op_init init

The MAC initialization function.

devcrypto_mac_op_update update

The MAC encryption function.

devcrypto_mac_op_final final

The MAC finalization function.

Library:

devcr