Since QEMU has been supported cryptodev, so it is necessary to support more crypto algorithms(i.e. hmac,aead) in QEMU backend.
This patchset add HMAC algorithms support. Longpeng(Mike) (7): qapi: crypto: add defination about HMAC algorithms crypto: add HMAC algorithms framework configure: add CONFIG_GCRYPT_SUPPORT_HMAC item crypto: support HMAC algorithms based on libgcrypt crypto: support HMAC algorithms based on glibc crypto: support HMAC algorithms based on nettle crypto: add HMAC algorithms testcases configure | 18 +++++ crypto/Makefile.objs | 4 ++ crypto/hmac-gcrypt.c | 182 +++++++++++++++++++++++++++++++++++++++++++++++ crypto/hmac-glib.c | 163 ++++++++++++++++++++++++++++++++++++++++++ crypto/hmac-nettle.c | 156 ++++++++++++++++++++++++++++++++++++++++ crypto/hmac.c | 72 +++++++++++++++++++ crypto/hmac.h | 166 ++++++++++++++++++++++++++++++++++++++++++ qapi/crypto.json | 17 +++++ tests/Makefile.include | 2 + tests/test-crypto-hmac.c | 162 +++++++++++++++++++++++++++++++++++++++++ 10 files changed, 942 insertions(+) create mode 100644 crypto/hmac-gcrypt.c create mode 100644 crypto/hmac-glib.c create mode 100644 crypto/hmac-nettle.c create mode 100644 crypto/hmac.c create mode 100644 crypto/hmac.h create mode 100644 tests/test-crypto-hmac.c -- 1.8.3.1