crypto: introduce new module for computing hash digests
[qemu/ar7.git] / crypto / init.c
blob40f3d6e778952b15f36a8a806d9b9b7ca8eedd4b
1 /*
2 * QEMU Crypto initialization
4 * Copyright (c) 2015 Red Hat, Inc.
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
9 * version 2 of the License, or (at your option) any later version.
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.
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/>.
21 #include "crypto/init.h"
23 #ifdef CONFIG_GNUTLS
24 #include <gnutls/gnutls.h>
25 #include <gnutls/crypto.h>
27 /* #define DEBUG_GNUTLS */
29 #ifdef DEBUG_GNUTLS
30 static void qcrypto_gnutls_log(int level, const char *str)
32 fprintf(stderr, "%d: %s", level, str);
34 #endif
36 int qcrypto_init(Error **errp)
38 int ret;
39 ret = gnutls_global_init();
40 if (ret < 0) {
41 error_setg(errp,
42 "Unable to initialize GNUTLS library: %s",
43 gnutls_strerror(ret));
44 return -1;
46 #ifdef DEBUG_GNUTLS
47 gnutls_global_set_log_level(10);
48 gnutls_global_set_log_function(qcrypto_gnutls_log);
49 #endif
50 return 0;
53 #else /* ! CONFIG_GNUTLS */
55 int qcrypto_init(Error **errp G_GNUC_UNUSED)
57 return 0;
60 #endif /* ! CONFIG_GNUTLS */