afsplit.c (98c710f2d5cdf37f29a267352eb1f3c28cbf369d) afsplit.c (e361a772ffcd33675ffdd4637eea98a460dfed1b)
1/*
2 * QEMU Crypto anti forensic information splitter
3 *
4 * Copyright (c) 2015-2016 Red Hat, Inc.
5 *
6 * Derived from cryptsetup package lib/luks1/af.c
7 *
8 * Copyright (C) 2004, Clemens Fruhwirth <clemens@endorphin.org>
9 * Copyright (C) 2009-2012, Red Hat, Inc. All rights reserved.
10 *
1/*
2 * QEMU Crypto anti forensic information splitter
3 *
4 * Copyright (c) 2015-2016 Red Hat, Inc.
5 *
6 * Derived from cryptsetup package lib/luks1/af.c
7 *
8 * Copyright (C) 2004, Clemens Fruhwirth <clemens@endorphin.org>
9 * Copyright (C) 2009-2012, Red Hat, Inc. All rights reserved.
10 *
11 * This library is free software; you can redistribute it and/or
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 *
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 *
16 * This library is distributed in the hope that it will be useful,
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
19 * General Public License for more details.
20 *
20 *
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
23 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <http://www.gnu.org/licenses/>.
24 */
25
26#include "qemu/osdep.h"
27#include "qemu/bswap.h"
28#include "crypto/afsplit.h"
29#include "crypto/random.h"
30
31

--- 128 unchanged lines hidden ---
23 */
24
25#include "qemu/osdep.h"
26#include "qemu/bswap.h"
27#include "crypto/afsplit.h"
28#include "crypto/random.h"
29
30

--- 128 unchanged lines hidden ---