tlscreds.c (98bfaac788be0ca63d7d010c8d4ba100ff1d8278) tlscreds.c (986bc8ded9a5459e72951cc91b53cf2b52eb735f)
1/*
2 * QEMU crypto TLS credential support
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

--- 6 unchanged lines hidden (view full) ---

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
21#include "qemu/osdep.h"
22#include "qapi/error.h"
1/*
2 * QEMU crypto TLS credential support
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

--- 6 unchanged lines hidden (view full) ---

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
21#include "qemu/osdep.h"
22#include "qapi/error.h"
23#include "crypto/tlscredspriv.h"
23#include "tlscredspriv.h"
24#include "trace.h"
25
26#define DH_BITS 2048
27
28#ifdef CONFIG_GNUTLS
29int
30qcrypto_tls_creds_get_dh_params_file(QCryptoTLSCreds *creds,
31 const char *filename,

--- 254 unchanged lines hidden ---
24#include "trace.h"
25
26#define DH_BITS 2048
27
28#ifdef CONFIG_GNUTLS
29int
30qcrypto_tls_creds_get_dh_params_file(QCryptoTLSCreds *creds,
31 const char *filename,

--- 254 unchanged lines hidden ---