This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_build/master-aarch64 in repository toolchain/ci/qemu.
from 58b53669e8 Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu [...] adds daa55f3ecf qapi: crypto-akcipher: Introduce akcipher types to qapi adds db5ca5fbfa crypto: Introduce akcipher crypto class adds 99d423f10c crypto: add ASN.1 DER decoder adds 4c5e512ee0 crypto: Implement RSA algorithm by hogweed adds e09d1c2747 crypto: Implement RSA algorithm by gcrypt adds 689309c4ac test/crypto: Add test suite for crypto akcipher adds f0cfb761bc tests/crypto: Add test suite for RSA keys adds 2417cbd591 Merge tag 'ak-pull-request' of https://gitlab.com/berrange/q [...]
No new revisions were added by this update.
Summary of changes: crypto/akcipher-gcrypt.c.inc | 595 ++++++++++++++ crypto/akcipher-nettle.c.inc | 451 +++++++++++ crypto/akcipher.c | 108 +++ crypto/akcipherpriv.h | 55 ++ crypto/der.c | 189 +++++ crypto/der.h | 81 ++ crypto/meson.build | 6 + crypto/rsakey-builtin.c.inc | 200 +++++ crypto/rsakey-nettle.c.inc | 158 ++++ target/i386/tcg/bpt_helper.c => crypto/rsakey.c | 41 +- crypto/rsakey.h | 92 +++ include/crypto/akcipher.h | 158 ++++ meson.build | 11 + qapi/crypto.json | 64 ++ tests/bench/benchmark-crypto-akcipher.c | 137 ++++ tests/bench/meson.build | 1 + tests/bench/test_akcipher_keys.inc | 537 +++++++++++++ tests/unit/meson.build | 2 + tests/unit/test-crypto-akcipher.c | 990 ++++++++++++++++++++++++ tests/unit/test-crypto-der.c | 290 +++++++ 20 files changed, 4148 insertions(+), 18 deletions(-) create mode 100644 crypto/akcipher-gcrypt.c.inc create mode 100644 crypto/akcipher-nettle.c.inc create mode 100644 crypto/akcipher.c create mode 100644 crypto/akcipherpriv.h create mode 100644 crypto/der.c create mode 100644 crypto/der.h create mode 100644 crypto/rsakey-builtin.c.inc create mode 100644 crypto/rsakey-nettle.c.inc copy target/i386/tcg/bpt_helper.c => crypto/rsakey.c (53%) create mode 100644 crypto/rsakey.h create mode 100644 include/crypto/akcipher.h create mode 100644 tests/bench/benchmark-crypto-akcipher.c create mode 100644 tests/bench/test_akcipher_keys.inc create mode 100644 tests/unit/test-crypto-akcipher.c create mode 100644 tests/unit/test-crypto-der.c