xref: /openbmc/qemu/include/crypto/init.h (revision e2b47666fe1544959c89bd3ed159e9e37cc9fc73)
1ddbb0d09SDaniel P. Berrange /*
2ddbb0d09SDaniel P. Berrange  * QEMU Crypto initialization
3ddbb0d09SDaniel P. Berrange  *
4ddbb0d09SDaniel P. Berrange  * Copyright (c) 2015 Red Hat, Inc.
5ddbb0d09SDaniel P. Berrange  *
6ddbb0d09SDaniel P. Berrange  * This library is free software; you can redistribute it and/or
7ddbb0d09SDaniel P. Berrange  * modify it under the terms of the GNU Lesser General Public
8ddbb0d09SDaniel 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.
10ddbb0d09SDaniel P. Berrange  *
11ddbb0d09SDaniel P. Berrange  * This library is distributed in the hope that it will be useful,
12ddbb0d09SDaniel P. Berrange  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13ddbb0d09SDaniel P. Berrange  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14ddbb0d09SDaniel P. Berrange  * Lesser General Public License for more details.
15ddbb0d09SDaniel P. Berrange  *
16ddbb0d09SDaniel P. Berrange  * You should have received a copy of the GNU Lesser General Public
17ddbb0d09SDaniel P. Berrange  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18ddbb0d09SDaniel P. Berrange  *
19ddbb0d09SDaniel P. Berrange  */
20ddbb0d09SDaniel P. Berrange 
212a6a4076SMarkus Armbruster #ifndef QCRYPTO_INIT_H
222a6a4076SMarkus Armbruster #define QCRYPTO_INIT_H
23ddbb0d09SDaniel P. Berrange 
24dbddad70SDaniel P. Berrangé #include "qapi/error.h"
25dbddad70SDaniel P. Berrangé 
26ddbb0d09SDaniel P. Berrange int qcrypto_init(Error **errp);
27ddbb0d09SDaniel P. Berrange 
282a6a4076SMarkus Armbruster #endif /* QCRYPTO_INIT_H */
29