blob: 00e0f637ce902490ed99c1b77c16cd45c7b110fc [file] [log] [blame]
Daniel P. Berrangeddbb0d02015-07-01 18:10:29 +01001/*
2 * QEMU Crypto initialization
3 *
4 * Copyright (c) 2015 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
Thomas Huthb7cbb872019-02-13 16:54:59 +01009 * version 2.1 of the License, or (at your option) any later version.
Daniel P. Berrangeddbb0d02015-07-01 18:10:29 +010010 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
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
Markus Armbruster2a6a4072016-06-29 13:47:03 +020021#ifndef QCRYPTO_INIT_H
22#define QCRYPTO_INIT_H
Daniel P. Berrangeddbb0d02015-07-01 18:10:29 +010023
Daniel P. Berrangédbddad72018-07-17 17:54:17 +010024#include "qapi/error.h"
25
Daniel P. Berrangeddbb0d02015-07-01 18:10:29 +010026int qcrypto_init(Error **errp);
27
Markus Armbruster2a6a4072016-06-29 13:47:03 +020028#endif /* QCRYPTO_INIT_H */