xref: /openbmc/qemu/crypto/ivgen-plain.h (revision ec11dc41eec5142b4776db1296972c6323ba5847)
1cb730894SDaniel P. Berrange /*
2cb730894SDaniel P. Berrange  * QEMU Crypto block IV generator - plain
3cb730894SDaniel P. Berrange  *
4cb730894SDaniel P. Berrange  * Copyright (c) 2015-2016 Red Hat, Inc.
5cb730894SDaniel P. Berrange  *
6cb730894SDaniel P. Berrange  * This library is free software; you can redistribute it and/or
7cb730894SDaniel P. Berrange  * modify it under the terms of the GNU Lesser General Public
8cb730894SDaniel P. Berrange  * License as published by the Free Software Foundation; either
9b7cbb874SThomas Huth  * version 2.1 of the License, or (at your option) any later version.
10cb730894SDaniel P. Berrange  *
11cb730894SDaniel P. Berrange  * This library is distributed in the hope that it will be useful,
12cb730894SDaniel P. Berrange  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13cb730894SDaniel P. Berrange  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14cb730894SDaniel P. Berrange  * Lesser General Public License for more details.
15cb730894SDaniel P. Berrange  *
16cb730894SDaniel P. Berrange  * You should have received a copy of the GNU Lesser General Public
17cb730894SDaniel P. Berrange  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18cb730894SDaniel P. Berrange  */
19cb730894SDaniel P. Berrange 
20*9c092804SMarkus Armbruster #ifndef QCRYPTO_IVGEN_PLAIN_H
21*9c092804SMarkus Armbruster #define QCRYPTO_IVGEN_PLAIN_H
22cb730894SDaniel P. Berrange 
230553d895SMarkus Armbruster #include "ivgenpriv.h"
240553d895SMarkus Armbruster 
25cb730894SDaniel P. Berrange extern struct QCryptoIVGenDriver qcrypto_ivgen_plain;
26cb730894SDaniel P. Berrange 
27*9c092804SMarkus Armbruster #endif /* QCRYPTO_IVGEN_PLAIN_H */
28