Searched refs:QCryptoHmac (Results 1 – 10 of 10) sorted by relevance
/openbmc/qemu/include/crypto/ |
H A D | hmac.h | 17 typedef struct QCryptoHmac QCryptoHmac; typedef 18 struct QCryptoHmac { struct 55 QCryptoHmac *qcrypto_hmac_new(QCryptoHashAlgorithm alg, 66 void qcrypto_hmac_free(QCryptoHmac *hmac); 68 G_DEFINE_AUTOPTR_CLEANUP_FUNC(QCryptoHmac, qcrypto_hmac_free) 89 int qcrypto_hmac_bytesv(QCryptoHmac *hmac, 115 int qcrypto_hmac_bytes(QCryptoHmac *hmac, 140 int qcrypto_hmac_digestv(QCryptoHmac *hmac, 163 int qcrypto_hmac_digest(QCryptoHmac *hmac,
|
/openbmc/qemu/crypto/ |
H A D | hmac.c | 18 int qcrypto_hmac_bytesv(QCryptoHmac *hmac, in qcrypto_hmac_bytesv() 30 int qcrypto_hmac_bytes(QCryptoHmac *hmac, in qcrypto_hmac_bytes() 45 int qcrypto_hmac_digestv(QCryptoHmac *hmac, in qcrypto_hmac_digestv() 72 int qcrypto_hmac_digest(QCryptoHmac *hmac, in qcrypto_hmac_digest() 86 QCryptoHmac *qcrypto_hmac_new(QCryptoHashAlgorithm alg, in qcrypto_hmac_new() 90 QCryptoHmac *hmac; in qcrypto_hmac_new() 110 hmac = g_new0(QCryptoHmac, 1); in qcrypto_hmac_new() 118 void qcrypto_hmac_free(QCryptoHmac *hmac) in qcrypto_hmac_free()
|
H A D | hmacpriv.h | 21 int (*hmac_bytesv)(QCryptoHmac *hmac, 28 void (*hmac_free)(QCryptoHmac *hmac);
|
H A D | hmac-glib.c | 74 qcrypto_glib_hmac_ctx_free(QCryptoHmac *hmac) in qcrypto_glib_hmac_ctx_free() 85 qcrypto_glib_hmac_bytesv(QCryptoHmac *hmac, in qcrypto_glib_hmac_bytesv()
|
H A D | hmac-gnutls.c | 87 qcrypto_gnutls_hmac_ctx_free(QCryptoHmac *hmac) in qcrypto_gnutls_hmac_ctx_free() 98 qcrypto_gnutls_hmac_bytesv(QCryptoHmac *hmac, in qcrypto_gnutls_hmac_bytesv()
|
H A D | hmac-gcrypt.c | 85 qcrypto_gcrypt_hmac_ctx_free(QCryptoHmac *hmac) in qcrypto_gcrypt_hmac_ctx_free() 96 qcrypto_gcrypt_hmac_bytesv(QCryptoHmac *hmac, in qcrypto_gcrypt_hmac_bytesv()
|
H A D | hash-afalg.c | 187 qcrypto_afalg_hmac_bytesv(QCryptoHmac *hmac, in qcrypto_afalg_hmac_bytesv() 198 static void qcrypto_afalg_hmac_ctx_free(QCryptoHmac *hmac) in qcrypto_afalg_hmac_ctx_free()
|
H A D | hmac-nettle.c | 124 qcrypto_nettle_hmac_ctx_free(QCryptoHmac *hmac) in qcrypto_nettle_hmac_ctx_free() 133 qcrypto_nettle_hmac_bytesv(QCryptoHmac *hmac, in qcrypto_nettle_hmac_bytesv()
|
/openbmc/qemu/tests/unit/ |
H A D | test-crypto-hmac.c | 89 QCryptoHmac *hmac = NULL; in test_hmac_alloc() 128 QCryptoHmac *hmac = NULL; in test_hmac_prealloc() 171 QCryptoHmac *hmac = NULL; in test_hmac_iov() 214 QCryptoHmac *hmac = NULL; in test_hmac_digest()
|
/openbmc/qemu/tests/bench/ |
H A D | benchmark-crypto-hmac.c | 23 QCryptoHmac *hmac = NULL; in test_hmac_speed()
|