Blame tests/hex.h

Packit aea12f
/*
Packit aea12f
 * Copyright (C) 2017 Red Hat, Inc.
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 Lesser General Public License
Packit aea12f
 * along with this program.  If not, see <https://www.gnu.org/licenses/>
Packit aea12f
 */
Packit aea12f
Packit aea12f
#ifndef GNUTLS_TESTS_HEX_H
Packit aea12f
#define GNUTLS_TESTS_HEX_H
Packit aea12f
Packit aea12f
#include <stdio.h>
Packit aea12f
#include <string.h>
Packit aea12f
#include <gnutls/gnutls.h>
Packit aea12f
Packit aea12f
inline static gnutls_datum_t SHEX(const char *hex)
Packit aea12f
{
Packit aea12f
	gnutls_datum_t input, output;
Packit aea12f
	int ret;
Packit aea12f
Packit aea12f
	input.data = (void*)hex;
Packit aea12f
	input.size = strlen(hex);
Packit aea12f
Packit aea12f
	ret = gnutls_hex_decode2(&input, &output);
Packit aea12f
	assert_int_equal(ret, 0);
Packit aea12f
	return output;
Packit aea12f
}
Packit aea12f
Packit aea12f
inline static gnutls_datum_t SDATA(const char *txt)
Packit aea12f
{
Packit aea12f
	gnutls_datum_t output;
Packit aea12f
	output.data = (void*)gnutls_strdup(txt);
Packit aea12f
	output.size = strlen(txt);
Packit aea12f
	return output;
Packit aea12f
}
Packit aea12f
Packit aea12f
#endif /* GNUTLS_TESTS_HEX_H */