17d969014SDaniel P. Berrange /* 27d969014SDaniel P. Berrange * QEMU Crypto block device encryption QCow/QCow2 AES-CBC format 37d969014SDaniel P. Berrange * 47d969014SDaniel P. Berrange * Copyright (c) 2015-2016 Red Hat, Inc. 57d969014SDaniel P. Berrange * 67d969014SDaniel P. Berrange * This library is free software; you can redistribute it and/or 77d969014SDaniel P. Berrange * modify it under the terms of the GNU Lesser General Public 87d969014SDaniel 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. 107d969014SDaniel P. Berrange * 117d969014SDaniel P. Berrange * This library is distributed in the hope that it will be useful, 127d969014SDaniel P. Berrange * but WITHOUT ANY WARRANTY; without even the implied warranty of 137d969014SDaniel P. Berrange * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 147d969014SDaniel P. Berrange * Lesser General Public License for more details. 157d969014SDaniel P. Berrange * 167d969014SDaniel P. Berrange * You should have received a copy of the GNU Lesser General Public 177d969014SDaniel P. Berrange * License along with this library; if not, see <http://www.gnu.org/licenses/>. 187d969014SDaniel P. Berrange * 197d969014SDaniel P. Berrange */ 207d969014SDaniel P. Berrange 212a6a4076SMarkus Armbruster #ifndef QCRYPTO_BLOCK_QCOW_H 222a6a4076SMarkus Armbruster #define QCRYPTO_BLOCK_QCOW_H 237d969014SDaniel P. Berrange 24986bc8deSMichael S. Tsirkin #include "blockpriv.h" 257d969014SDaniel P. Berrange 267d969014SDaniel P. Berrange extern const QCryptoBlockDriver qcrypto_block_driver_qcow; 277d969014SDaniel P. Berrange 282a6a4076SMarkus Armbruster #endif /* QCRYPTO_BLOCK_QCOW_H */ 29