ivgen-plain.c (7e0019a7196ebed177c95824875cf852e1a6f667) ivgen-plain.c (986bc8ded9a5459e72951cc91b53cf2b52eb735f)
1/*
2 * QEMU Crypto block IV generator - plain
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

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

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 "qemu/bswap.h"
1/*
2 * QEMU Crypto block IV generator - plain
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

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

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 "qemu/bswap.h"
23#include "crypto/ivgen-plain.h"
23#include "ivgen-plain.h"
24
25static int qcrypto_ivgen_plain_init(QCryptoIVGen *ivgen,
26 const uint8_t *key, size_t nkey,
27 Error **errp)
28{
29 return 0;
30}
31

--- 29 unchanged lines hidden ---
24
25static int qcrypto_ivgen_plain_init(QCryptoIVGen *ivgen,
26 const uint8_t *key, size_t nkey,
27 Error **errp)
28{
29 return 0;
30}
31

--- 29 unchanged lines hidden ---