Updated: October 28, 2024 |
Algorithm object
#include <qcrypto/qcrypto_plugin.h>
typedef struct _qcrypto_algorithm { char name[QCRYPTO_ALG_NAME_MAX]; qcrypto_algorithm_type_t type; union { qcrypto_digest_t digest; qcrypto_rng_t rng; qcrypto_cipher_t cipher; qcrypto_keygen_t keygen; qcrypto_mac_t mac; qcrypto_kdf_t kdf; qcrypto_signature_t signature; }; qcrypto_algorithm_op_init init; qcrypto_algorithm_op_uninit uninit; void* private; } qcrypto_algorithm_t;
The algorithm name.
The algorithm type.
The digest object.
The RNG object.
The cipher object.
The key generation object.
The MAC object.
The KDF object.
The signature object.
The algorithm initialization function.
The algorithm un-initialization function.
Algorithm private storage.