diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2015-10-31 14:39:52 +0900 |
---|---|---|
committer | Daniel P. Berrange <berrange@redhat.com> | 2016-03-17 09:49:01 +0000 |
commit | b917da4cbd13dae4cda3852d5bdf3725202103ab (patch) | |
tree | 9a2b5c3ae685f3e3dd520318017e85434945a178 /Makefile.objs | |
parent | 8c4575472494a5dfedfe05e7b58ca9ce3872ad56 (diff) | |
download | qemu-b917da4cbd13dae4cda3852d5bdf3725202103ab.tar.gz qemu-b917da4cbd13dae4cda3852d5bdf3725202103ab.tar.bz2 qemu-b917da4cbd13dae4cda3852d5bdf3725202103ab.zip |
crypto: add cryptographic random byte source
There are three backend impls provided. The preferred
is gnutls, which is backed by nettle in modern distros.
The gcrypt impl is provided for cases where QEMU build
against gnutls is disabled, but crypto is still desired.
No nettle impl is provided, since it is non-trivial to
use the nettle APIs for random numbers. Users of nettle
should ensure gnutls is enabled for QEMU.
Reviewed-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'Makefile.objs')
-rw-r--r-- | Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.objs b/Makefile.objs index fbcaa7471f..8f705f6202 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -1,6 +1,6 @@ ####################################################################### # Common libraries for tools and emulators -stub-obj-y = stubs/ +stub-obj-y = stubs/ crypto/ util-obj-y = util/ qobject/ qapi/ util-obj-y += qmp-introspect.o qapi-types.o qapi-visit.o qapi-event.o |