Blame tests/hex.h

Packit Service 4684c1
/*
Packit Service 4684c1
 * Copyright (C) 2017 Red Hat, Inc.
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
 * GnuTLS is free software; you can redistribute it and/or modify it
Packit Service 4684c1
 * under the terms of the GNU General Public License as published by
Packit Service 4684c1
 * the Free Software Foundation; either version 3 of the License, or
Packit Service 4684c1
 * (at your option) any later version.
Packit Service 4684c1
 *
Packit Service 4684c1
 * GnuTLS 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
 * 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
#ifndef GNUTLS_TESTS_HEX_H
Packit Service 4684c1
#define GNUTLS_TESTS_HEX_H
Packit Service 4684c1
Packit Service 4684c1
#include <stdio.h>
Packit Service 4684c1
#include <string.h>
Packit Service 4684c1
#include <gnutls/gnutls.h>
Packit Service 4684c1
Packit Service 4684c1
inline static gnutls_datum_t SHEX(const char *hex)
Packit Service 4684c1
{
Packit Service 4684c1
	gnutls_datum_t input, output;
Packit Service 4684c1
	int ret;
Packit Service 4684c1
Packit Service 4684c1
	input.data = (void*)hex;
Packit Service 4684c1
	input.size = strlen(hex);
Packit Service 4684c1
Packit Service 4684c1
	ret = gnutls_hex_decode2(&input, &output);
Packit Service 4684c1
	assert_int_equal(ret, 0);
Packit Service 4684c1
	return output;
Packit Service 4684c1
}
Packit Service 4684c1
Packit Service 4684c1
inline static gnutls_datum_t SDATA(const char *txt)
Packit Service 4684c1
{
Packit Service 4684c1
	gnutls_datum_t output;
Packit Service 4684c1
	output.data = (void*)gnutls_strdup(txt);
Packit Service 4684c1
	output.size = strlen(txt);
Packit Service 4684c1
	return output;
Packit Service 4684c1
}
Packit Service 4684c1
Packit Service 4684c1
#endif /* GNUTLS_TESTS_HEX_H */