1cb730894SDaniel P. Berrange /* 2cb730894SDaniel P. Berrange * QEMU Crypto block IV generator - essiv 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 9*b7cbb874SThomas 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 200553d895SMarkus Armbruster #ifndef QCRYPTO_IVGEN_ESSIV_H 210553d895SMarkus Armbruster #define QCRYPTO_IVGEN_ESSIV_H 220553d895SMarkus Armbruster 23986bc8deSMichael S. Tsirkin #include "ivgenpriv.h" 24cb730894SDaniel P. Berrange 25cb730894SDaniel P. Berrange extern struct QCryptoIVGenDriver qcrypto_ivgen_essiv; 26cb730894SDaniel P. Berrange 270553d895SMarkus Armbruster #endif /* QCRYPTO_IVGEN_ESSIV_H */ 28