Blame lib/nettle/rnd-common.h

Packit Service 4684c1
/*
Packit Service 4684c1
 * Copyright (C) 2010-2012 Free Software Foundation, Inc.
Packit Service 4684c1
 * Copyright (C) 2000, 2001, 2008 Niels Möller
Packit Service 4684c1
 *
Packit Service 4684c1
 * Author: Nikos Mavrogiannopoulos
Packit Service 4684c1
 *
Packit Service 4684c1
 * This file is part of GNUTLS.
Packit Service 4684c1
 *
Packit Service 4684c1
 * The GNUTLS library is free software; you can redistribute it and/or
Packit Service 4684c1
 * modify it under the terms of the GNU Lesser General Public License
Packit Service 4684c1
 * as published by the Free Software Foundation; either version 2.1 of
Packit Service 4684c1
 * the License, or (at your option) any later version.
Packit Service 4684c1
 *
Packit Service 4684c1
 * This library is distributed in the hope that it will be useful, but
Packit Service 4684c1
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 4684c1
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 4684c1
 * Lesser General Public License for more details.
Packit Service 4684c1
 *
Packit Service 4684c1
 * You should have received a copy of the GNU Lesser General Public License
Packit Service 4684c1
 * along with this program.  If not, see <https://www.gnu.org/licenses/>
Packit Service 4684c1
 *
Packit Service 4684c1
 */
Packit Service 4684c1
Packit Service 4684c1
#ifndef GNUTLS_LIB_NETTLE_RND_COMMON_H
Packit Service 4684c1
#define GNUTLS_LIB_NETTLE_RND_COMMON_H
Packit Service 4684c1
Packit Service 4684c1
#include "gnutls_int.h"
Packit Service 4684c1
#ifdef HAVE_GETPID
Packit Service 4684c1
# include <unistd.h>		/* getpid */
Packit Service 4684c1
#endif
Packit Service 4684c1
#ifdef HAVE_GETRUSAGE
Packit Service 4684c1
# include <sys/resource.h>
Packit Service 4684c1
#endif
Packit Service 4684c1
Packit Service 4684c1
#include <fips.h>
Packit Service 4684c1
Packit Service 4684c1
int _rnd_system_entropy_init(void);
Packit Service 4684c1
int _rnd_system_entropy_check(void);
Packit Service 4684c1
void _rnd_system_entropy_deinit(void);
Packit Service 4684c1
Packit Service 4684c1
typedef int (*get_entropy_func)(void* rnd, size_t size);
Packit Service 4684c1
Packit Service 4684c1
extern get_entropy_func _rnd_get_system_entropy;
Packit Service 4684c1
Packit Service 4684c1
Packit Service 4684c1
#endif /* GNUTLS_LIB_NETTLE_RND_COMMON_H */