Cipher algorithm functions
#include <dev/crypto/devcrypto_plugin.h>
typedef struct _devcrypto_cipher_ops {
devcrypto_cipher_op_init init;
devcrypto_cipher_op_encrypt encrypt;
devcrypto_cipher_op_decrypt decrypt;
} devcrypto_cipher_ops_t;
The cipher initialization function.
The cipher encryption function.
The cipher decryption function.