qemu-devel
[Top][All Lists]
Advanced

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

[PULL 00/17] Crypto next patches


From: Daniel P . Berrangé
Subject: [PULL 00/17] Crypto next patches
Date: Thu, 10 Sep 2020 11:06:06 +0100

The following changes since commit 9435a8b3dd35f1f926f1b9127e8a906217a5518a:

  Merge remote-tracking branch 'remotes/kraxel/tags/sirius/ipxe-20200908-pull=
-request' into staging (2020-09-08 21:21:13 +0100)

are available in the Git repository at:

  https://gitlab.com/berrange/qemu tags/crypt-perf-pull-request

for you to fetch changes up to 1b010d9339497b081c3b8ab4f98b2a21f2cae08d:

  crypto/gcrypt: Split QCryptoCipherGcrypt into subclasses (2020-09-10 11:02:=
23 +0100)

----------------------------------------------------------------
Improve performance of crypto cipher subsystem

----------------------------------------------------------------

Daniel P. Berrang=C3=A9 (1):
  tests: fix output message formatting for crypto benchmarks

Richard Henderson (16):
  crypto: Assume blocksize is a power of 2
  crypto: Rename cipher include files to .c.inc
  crypto: Remove redundant includes
  crypto/nettle: Fix xts_encrypt arguments
  crypto: Move QCryptoCipherDriver typedef to crypto/cipher.h
  crypto: Use the correct const type for driver
  crypto: Allocate QCryptoCipher with the subclass
  crypto: Move cipher->driver init to qcrypto_*_cipher_ctx_new
  crypto: Constify cipher data tables
  crypto/builtin: Remove odd-sized AES block handling
  crypto/builtin: Merge qcrypto_cipher_aes_{ecb,xts}_{en,de}crypt
  crypto/builtin: Move AES_cbc_encrypt into cipher-builtin.inc.c
  crypto/builtin: Split and simplify AES_encrypt_cbc
  crypto/builtin: Split QCryptoCipherBuiltin into subclasses
  crypto/nettle: Split QCryptoCipherNettle into subclasses
  crypto/gcrypt: Split QCryptoCipherGcrypt into subclasses

 crypto/aes.c                                  |  51 --
 crypto/afalgpriv.h                            |   3 +
 crypto/cipher-afalg.c                         |  25 +-
 crypto/cipher-builtin.c                       | 532 ------------
 crypto/cipher-builtin.c.inc                   | 435 ++++++++++
 .../{cipher-gcrypt.c =3D> cipher-gcrypt.c.inc}  | 503 ++++++------
 crypto/cipher-nettle.c                        | 733 -----------------
 crypto/cipher-nettle.c.inc                    | 760 ++++++++++++++++++
 crypto/cipher.c                               |  44 +-
 crypto/cipherpriv.h                           |   6 +-
 include/crypto/aes.h                          |   4 -
 include/crypto/cipher.h                       |   4 +-
 tests/benchmark-crypto-cipher.c               |  12 +-
 tests/benchmark-crypto-hash.c                 |   4 +-
 tests/benchmark-crypto-hmac.c                 |   7 +-
 15 files changed, 1492 insertions(+), 1631 deletions(-)
 delete mode 100644 crypto/cipher-builtin.c
 create mode 100644 crypto/cipher-builtin.c.inc
 rename crypto/{cipher-gcrypt.c =3D> cipher-gcrypt.c.inc} (52%)
 delete mode 100644 crypto/cipher-nettle.c
 create mode 100644 crypto/cipher-nettle.c.inc

--=20
2.26.2





reply via email to

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