diff options
| author | Daniel P. Berrange | 2015-07-01 19:10:30 +0200 |
|---|---|---|
| committer | Paolo Bonzini | 2015-07-07 12:04:13 +0200 |
| commit | 6f2945cde60545aae7f31ab9d5ef29531efbc94f (patch) | |
| tree | c1859c153b35e1c4e104b1161dbc376827d88f7b /block | |
| parent | crypto: introduce new module for computing hash digests (diff) | |
| download | qemu-6f2945cde60545aae7f31ab9d5ef29531efbc94f.tar.gz qemu-6f2945cde60545aae7f31ab9d5ef29531efbc94f.tar.xz qemu-6f2945cde60545aae7f31ab9d5ef29531efbc94f.zip | |
crypto: move built-in AES implementation into crypto/
To prepare for a generic internal cipher API, move the
built-in AES implementation into the crypto/ directory
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Message-Id: <1435770638-25715-3-git-send-email-berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'block')
| -rw-r--r-- | block/qcow.c | 2 | ||||
| -rw-r--r-- | block/qcow2.c | 1 | ||||
| -rw-r--r-- | block/qcow2.h | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/block/qcow.c b/block/qcow.c index 733627fbf2..bf5c57082f 100644 --- a/block/qcow.c +++ b/block/qcow.c @@ -26,7 +26,7 @@ #include "qemu/module.h" #include <zlib.h> #include "qapi/qmp/qerror.h" -#include "qemu/aes.h" +#include "crypto/aes.h" #include "migration/migration.h" /**************************************************************/ diff --git a/block/qcow2.c b/block/qcow2.c index d522ec7d14..85e07318c7 100644 --- a/block/qcow2.c +++ b/block/qcow2.c @@ -25,7 +25,6 @@ #include "block/block_int.h" #include "qemu/module.h" #include <zlib.h> -#include "qemu/aes.h" #include "block/qcow2.h" #include "qemu/error-report.h" #include "qapi/qmp/qerror.h" diff --git a/block/qcow2.h b/block/qcow2.h index 5936d299a3..462147c17f 100644 --- a/block/qcow2.h +++ b/block/qcow2.h @@ -25,7 +25,7 @@ #ifndef BLOCK_QCOW2_H #define BLOCK_QCOW2_H -#include "qemu/aes.h" +#include "crypto/aes.h" #include "block/coroutine.h" //#define DEBUG_ALLOC |
