ivgen-essiv.c (c1d5b9add7b04661bedef9a3379a8b82547b53db) ivgen-essiv.c (e688df6bc4549f28534cdb001f168b8caae55b0c)
1/*
2 * QEMU Crypto block IV generator - essiv
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

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

14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
21#include "qemu/osdep.h"
1/*
2 * QEMU Crypto block IV generator - essiv
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

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

14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
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#include "crypto/ivgen-essiv.h"
25
26typedef struct QCryptoIVGenESSIV QCryptoIVGenESSIV;
27struct QCryptoIVGenESSIV {
28 QCryptoCipher *cipher;
29};
30

--- 91 unchanged lines hidden ---
22#include "qemu/bswap.h"
23#include "crypto/ivgen-essiv.h"
24
25typedef struct QCryptoIVGenESSIV QCryptoIVGenESSIV;
26struct QCryptoIVGenESSIV {
27 QCryptoCipher *cipher;
28};
29

--- 91 unchanged lines hidden ---