Blame tests/rng-op.c

Packit aea12f
/*
Packit aea12f
 * Copyright (C) 2008-2012 Free Software Foundation, Inc.
Packit aea12f
 * Copyright (C) 2017 Nikos Mavrogiannopoulos
Packit aea12f
 *
Packit aea12f
 * Author: Nikos Mavrogiannopoulos
Packit aea12f
 *
Packit aea12f
 * This file is part of GnuTLS.
Packit aea12f
 *
Packit aea12f
 * GnuTLS is free software: you can redistribute it and/or modify it
Packit aea12f
 * under the terms of the GNU General Public License as published by
Packit aea12f
 * the Free Software Foundation, either version 3 of the License, or
Packit aea12f
 * (at your option) any later version.
Packit aea12f
 *
Packit aea12f
 * GnuTLS is distributed in the hope that it will be useful, but
Packit aea12f
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit aea12f
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit aea12f
 * General Public License for more details.
Packit aea12f
 *
Packit aea12f
 * You should have received a copy of the GNU General Public License
Packit aea12f
 * along with GnuTLS.  If not, see <https://www.gnu.org/licenses/>.
Packit aea12f
 *
Packit aea12f
 */
Packit aea12f
Packit aea12f
#ifdef HAVE_CONFIG_H
Packit aea12f
#include <config.h>
Packit aea12f
#endif
Packit aea12f
Packit aea12f
#include <stdio.h>
Packit aea12f
#include <stdlib.h>
Packit aea12f
#include <unistd.h>
Packit aea12f
#include <sys/types.h>
Packit aea12f
#if !defined(_WIN32)
Packit aea12f
#include <sys/wait.h>
Packit aea12f
#endif
Packit aea12f
Packit aea12f
#include "utils.h"
Packit aea12f
#include <gnutls/gnutls.h>
Packit aea12f
#include <gnutls/crypto.h>
Packit aea12f
Packit aea12f
/* This tests the operation of the provided random generator
Packit aea12f
 * to try() function. It will check whether it can perform more than
Packit aea12f
 * 16k iterations, and provide a substantial amount of data.
Packit aea12f
 */
Packit aea12f
Packit aea12f
static void try(int rnd)
Packit aea12f
{
Packit aea12f
	unsigned char buf1[64];
Packit aea12f
	unsigned char *tmp;
Packit aea12f
	int ret;
Packit aea12f
	unsigned i;
Packit aea12f
Packit aea12f
	global_init();
Packit aea12f
Packit aea12f
	for (i = 0; i <= 65539; i++) {
Packit aea12f
		ret = gnutls_rnd(rnd, buf1, sizeof(buf1));
Packit aea12f
		if (ret < 0) {
Packit aea12f
			fail("Error iterating RNG-%d more than %u times\n", rnd, i);
Packit aea12f
			exit(1);
Packit aea12f
		}
Packit aea12f
	}
Packit aea12f
Packit aea12f
#define TMP_SIZE (65*1024)
Packit aea12f
	tmp = malloc(TMP_SIZE);
Packit aea12f
	if (tmp == NULL) {
Packit aea12f
		fail("memory error\n");
Packit aea12f
		exit(1);
Packit aea12f
	}
Packit aea12f
Packit aea12f
	for (i = 0; i <= 65539; i++) {
Packit aea12f
		ret = gnutls_rnd(rnd, tmp, TMP_SIZE);
Packit aea12f
		if (ret < 0) {
Packit aea12f
			fail("Error iterating RNG-%d more than %u times for %d data\n", rnd, i, TMP_SIZE);
Packit aea12f
			exit(1);
Packit aea12f
		}
Packit aea12f
	}
Packit aea12f
	free(tmp);
Packit aea12f
Packit aea12f
	gnutls_global_deinit();
Packit aea12f
}