All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Daniel P. Berrangé" <berrange@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Daniel P. Berrangé" <berrange@redhat.com>
Subject: [Qemu-devel] [PULL 0/5] Misc next patches
Date: Fri, 19 Jul 2019 14:25:44 +0100	[thread overview]
Message-ID: <20190719132549.14726-1-berrange@redhat.com> (raw)

The following changes since commit 0274f45bdef73283f2c213610f11d4e5dcba43b6:

  Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-4.1-pull-request' into staging (2019-07-19 09:44:43 +0100)

are available in the Git repository at:

  https://github.com/berrange/qemu tags/misc-next-pull-request

for you to fetch changes up to b7cbb8741b40b7cd4de9ad6bdb69baae4d6dadcf:

  crypto: Fix LGPL information in the file headers (2019-07-19 14:21:25 +0100)

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

 * Fixes crypto function signatures to be compatible with
   both old and new versions of nettle
 * Fixes deprecation warnings on new nettle
 * Fixes GPL license header typos
 * Documents security implications of monitor usage
 * Optimize linking of capstone to avoid it in tools

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

Daniel P. Berrangé (4):
  crypto: switch to modern nettle AES APIs
  crypto: fix function signatures for nettle 2.7 vs 3
  configure: only link capstone to emulation targets
  doc: document that the monitor console is a privileged control
    interface

Thomas Huth (1):
  crypto: Fix LGPL information in the file headers

 Makefile.target               |   1 +
 configure                     |   6 +-
 crypto/block-luks.c           |   2 +-
 crypto/block-luks.h           |   2 +-
 crypto/block-qcow.c           |   2 +-
 crypto/block-qcow.h           |   2 +-
 crypto/block.c                |   2 +-
 crypto/blockpriv.h            |   2 +-
 crypto/cipher-builtin.c       |   2 +-
 crypto/cipher-gcrypt.c        |   2 +-
 crypto/cipher-nettle.c        | 220 ++++++++++++++++++++++++++++------
 crypto/cipher.c               |   2 +-
 crypto/hash-gcrypt.c          |   2 +-
 crypto/hash-glib.c            |   2 +-
 crypto/hash-nettle.c          |  14 ++-
 crypto/hash.c                 |   2 +-
 crypto/hmac-nettle.c          |  17 ++-
 crypto/init.c                 |   2 +-
 crypto/ivgen-essiv.c          |   2 +-
 crypto/ivgen-essiv.h          |   2 +-
 crypto/ivgen-plain.c          |   2 +-
 crypto/ivgen-plain.h          |   2 +-
 crypto/ivgen-plain64.c        |   2 +-
 crypto/ivgen-plain64.h        |   2 +-
 crypto/ivgen.c                |   2 +-
 crypto/ivgenpriv.h            |   2 +-
 crypto/pbkdf-gcrypt.c         |   2 +-
 crypto/pbkdf-nettle.c         |   2 +-
 crypto/pbkdf-stub.c           |   2 +-
 crypto/pbkdf.c                |   2 +-
 crypto/random-gcrypt.c        |   2 +-
 crypto/random-gnutls.c        |   2 +-
 crypto/random-platform.c      |   2 +-
 crypto/secret.c               |   2 +-
 crypto/tlscreds.c             |   2 +-
 crypto/tlscredsanon.c         |   2 +-
 crypto/tlscredspriv.h         |   2 +-
 crypto/tlscredspsk.c          |   2 +-
 crypto/tlscredsx509.c         |   2 +-
 crypto/tlssession.c           |   2 +-
 crypto/xts.c                  |   2 +-
 docs/security.texi            |  36 ++++++
 include/crypto/block.h        |   2 +-
 include/crypto/cipher.h       |   2 +-
 include/crypto/hash.h         |   2 +-
 include/crypto/init.h         |   2 +-
 include/crypto/ivgen.h        |   2 +-
 include/crypto/pbkdf.h        |   2 +-
 include/crypto/random.h       |   2 +-
 include/crypto/secret.h       |   2 +-
 include/crypto/tlscreds.h     |   2 +-
 include/crypto/tlscredsanon.h |   2 +-
 include/crypto/tlscredspsk.h  |   2 +-
 include/crypto/tlscredsx509.h |   2 +-
 include/crypto/tlssession.h   |   2 +-
 include/crypto/xts.h          |   2 +-
 56 files changed, 298 insertions(+), 96 deletions(-)

-- 
2.21.0



             reply	other threads:[~2019-07-19 13:26 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-19 13:25 Daniel P. Berrangé [this message]
2019-07-19 13:25 ` [Qemu-devel] [PULL 1/5] crypto: switch to modern nettle AES APIs Daniel P. Berrangé
2019-07-19 13:25 ` [Qemu-devel] [PULL 2/5] crypto: fix function signatures for nettle 2.7 vs 3 Daniel P. Berrangé
2019-07-19 13:25 ` [Qemu-devel] [PULL 3/5] configure: only link capstone to emulation targets Daniel P. Berrangé
2019-07-19 13:25 ` [Qemu-devel] [PULL 4/5] doc: document that the monitor console is a privileged control interface Daniel P. Berrangé
2019-07-19 13:25 ` [Qemu-devel] [PULL 5/5] crypto: Fix LGPL information in the file headers Daniel P. Berrangé
2019-07-19 13:58 ` [Qemu-devel] [PULL 0/5] Misc next patches Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190719132549.14726-1-berrange@redhat.com \
    --to=berrange@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.