AEAD cipher algorithm functions
#include <dev/crypto/devcrypto_plugin.h>
typedef struct _devcrypto_aead_cipher_ops { devcrypto_aead_cipher_op_init init; devcrypto_aead_cipher_op_encrypt encrypt; devcrypto_aead_cipher_op_decrypt decrypt; } devcrypto_aead_cipher_ops_t;
The cipher initialization function.
The cipher encryption function.
The cipher decryption function.