qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH for-2.9 v2 0/7] crypto: add HMAC algorithms support


From: Longpeng(Mike)
Subject: [Qemu-devel] [PATCH for-2.9 v2 0/7] crypto: add HMAC algorithms support
Date: Mon, 12 Dec 2016 16:08:05 +0800

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.

---
Changes since v1:
    - check whether algorithm is supported in testcase [build test]

---
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 | 166 ++++++++++++++++++++++++++++++++++++++++++
 10 files changed, 946 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





reply via email to

[Prev in Thread] Current Thread [Next in Thread]