tests/unit: Bump test-aio-multithread test timeout to 2 minutes
[qemu/kevin.git] / crypto / hmacpriv.h
blob62dfe8257afd3d3c6926cb0d3e6482784cef2bc9
1 /*
2 * QEMU Crypto hmac driver supports
4 * Copyright (c) 2017 HUAWEI TECHNOLOGIES CO., LTD.
6 * Authors:
7 * Longpeng(Mike) <longpeng2@huawei.com>
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,
23 size_t niov,
24 uint8_t **result,
25 size_t *resultlen,
26 Error **errp);
28 void (*hmac_free)(QCryptoHmac *hmac);
31 void *qcrypto_hmac_ctx_new(QCryptoHashAlgorithm alg,
32 const uint8_t *key, size_t nkey,
33 Error **errp);
34 extern QCryptoHmacDriver qcrypto_hmac_lib_driver;
36 #ifdef CONFIG_AF_ALG
38 #include "afalgpriv.h"
40 QCryptoAFAlg *qcrypto_afalg_hmac_ctx_new(QCryptoHashAlgorithm alg,
41 const uint8_t *key, size_t nkey,
42 Error **errp);
43 extern QCryptoHmacDriver qcrypto_hmac_afalg_driver;
45 #endif
47 #endif