block-luks.c (530049bc1dcc24c1178a29d99ca08b6dd08413e0) block-luks.c (986bc8ded9a5459e72951cc91b53cf2b52eb735f)
1/*
2 * QEMU Crypto block device encryption LUKS format
3 *
4 * Copyright (c) 2015-2016 Red Hat, Inc.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either

--- 8 unchanged lines hidden (view full) ---

17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
21#include "qemu/osdep.h"
22#include "qapi/error.h"
23#include "qemu/bswap.h"
24
1/*
2 * QEMU Crypto block device encryption LUKS format
3 *
4 * Copyright (c) 2015-2016 Red Hat, Inc.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either

--- 8 unchanged lines hidden (view full) ---

17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
21#include "qemu/osdep.h"
22#include "qapi/error.h"
23#include "qemu/bswap.h"
24
25#include "crypto/block-luks.h"
25#include "block-luks.h"
26
27#include "crypto/hash.h"
28#include "crypto/afsplit.h"
29#include "crypto/pbkdf.h"
30#include "crypto/secret.h"
31#include "crypto/random.h"
32#include "qemu/uuid.h"
33

--- 1407 unchanged lines hidden ---
26
27#include "crypto/hash.h"
28#include "crypto/afsplit.h"
29#include "crypto/pbkdf.h"
30#include "crypto/secret.h"
31#include "crypto/random.h"
32#include "qemu/uuid.h"
33

--- 1407 unchanged lines hidden ---