This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-release-arm-build_cross in repository toolchain/ci/qemu.
from 438951e883 Merge remote-tracking branch 'remotes/stsquad/tags/pull-test [...] adds bca579e619 crypto: remove conditional around 3DES crypto test cases adds 1685983133 crypto: remove obsolete crypto test condition adds 295736cfc8 crypto: skip essiv ivgen tests if AES+ECB isn't available adds 7ea450b0f0 crypto: use &error_fatal in crypto tests adds 1741093b0a crypto: fix gcrypt min version 1.8 regression adds ea7a6802c7 crypto: drop gcrypt thread initialization code adds 7b40aa4b96 crypto: drop custom XTS support in gcrypt driver adds f8157e100c crypto: add crypto tests for single block DES-ECB and DES-CBC adds 21407ddf96 crypto: delete built-in DES implementation adds 6801404429 crypto: delete built-in XTS cipher mode support adds 83bee4b51f crypto: replace 'des-rfb' cipher with 'des' adds 260a13d472 crypto: flip priority of backends to prefer gcrypt adds cc4c7c7382 crypto: introduce build system for gnutls crypto backend adds 3d2b61ffcd crypto: add gnutls cipher provider adds 9a85ca050a crypto: add gnutls hash provider adds 678307b605 crypto: add gnutls hmac provider adds 8c1d3dc772 crypto: add gnutls pbkdf provider adds 8bd0931f63 crypto: prefer gnutls as the crypto backend if new enough adds 96916f36c4 net/rocker: use GDateTime for formatting timestamp in debug [...] adds cfb47f2178 io: use GDateTime for formatting timestamp for websock headers adds 2ce949a4c1 seccomp: don't block getters for resource control syscalls adds 927fae0eb9 tests/migration: fix unix socket migration adds 2edb76ea57 docs: fix typo s/Intel/AMD/ in CPU model notes adds ce8ee7c626 qemu-options: re-arrange CPU topology options adds b9361bdc1f qemu-options: tweak to show that CPU count is optional adds 80d7835749 qemu-options: rewrite help for -smp options adds d4127349e3 Merge remote-tracking branch 'remotes/berrange-gitlab/tags/c [...]
No new revisions were added by this update.
Summary of changes: crypto/cipher-builtin.c.inc | 132 ---------- crypto/cipher-gcrypt.c.inc | 143 +--------- crypto/cipher-gnutls.c.inc | 335 ++++++++++++++++++++++++ crypto/cipher-nettle.c.inc | 26 +- crypto/cipher.c | 30 +-- crypto/desrfb.c | 416 ------------------------------ crypto/{hash-gcrypt.c => hash-gnutls.c} | 82 +++--- crypto/hmac-gnutls.c | 139 ++++++++++ crypto/init.c | 62 ----- crypto/meson.build | 12 +- crypto/{pbkdf-gcrypt.c => pbkdf-gnutls.c} | 34 +-- docs/system/cpu-models-x86.rst.inc | 2 +- hw/net/rocker/rocker.h | 11 +- io/channel-websock.c | 10 +- meson.build | 102 +++++--- qapi/crypto.json | 4 +- qemu-options.hx | 41 ++- softmmu/qemu-seccomp.c | 6 - tests/migration/guestperf/engine.py | 2 +- tests/unit/test-crypto-cipher.c | 31 ++- tests/unit/test-crypto-hash.c | 13 +- tests/unit/test-crypto-hmac.c | 28 +- tests/unit/test-crypto-ivgen.c | 14 +- tests/unit/test-crypto-pbkdf.c | 5 +- ui/vnc.c | 20 +- 25 files changed, 725 insertions(+), 975 deletions(-) create mode 100644 crypto/cipher-gnutls.c.inc delete mode 100644 crypto/desrfb.c copy crypto/{hash-gcrypt.c => hash-gnutls.c} (59%) create mode 100644 crypto/hmac-gnutls.c copy crypto/{pbkdf-gcrypt.c => pbkdf-gnutls.c} (71%)