2 * QEMU Crypto hmac driver supports
4 * Copyright (c) 2017 HUAWEI TECHNOLOGIES CO., LTD.
9 * This work is licensed under the terms of the GNU GPL, version 2 or
10 * (at your option) any later version. See the COPYING file in the
11 * top-level directory.
15 #ifndef QCRYPTO_HMACPRIV_H
16 #define QCRYPTO_HMACPRIV_H
18 typedef struct QCryptoHmacDriver QCryptoHmacDriver;
20 struct QCryptoHmacDriver {
21 int (*hmac_bytesv)(QCryptoHmac *hmac,
22 const struct iovec *iov,
28 void (*hmac_free)(QCryptoHmac *hmac);
31 extern void *qcrypto_hmac_ctx_new(QCryptoHashAlgorithm alg,
32 const uint8_t *key, size_t nkey,
34 extern QCryptoHmacDriver qcrypto_hmac_lib_driver;
38 #include "afalgpriv.h"
41 qcrypto_afalg_hmac_ctx_new(QCryptoHashAlgorithm alg,
42 const uint8_t *key, size_t nkey,
44 extern QCryptoHmacDriver qcrypto_hmac_afalg_driver;