summaryrefslogtreecommitdiff
path: root/crypto/libecc/src/utils/print_buf.c
blob: 748759e0081d2ed64e769fd5176e537b64071b2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 *  Copyright (C) 2021 - This file is part of libecc project
 *
 *  Authors:
 *      Ryad BENADJILA <ryadbenadjila@gmail.com>
 *      Arnaud EBALARD <arnaud.ebalard@ssi.gouv.fr>
 *
 *  This software is licensed under a dual BSD and GPL v2 license.
 *  See LICENSE file at the root folder of the project.
 */
#include <libecc/utils/print_buf.h>
#include <libecc/external_deps/print.h>

/* Print the buffer of a given size */
void buf_print(const char *msg, const u8 *buf, u16 buflen)
{
	u32 i;

	if ((buf == NULL) || (msg == NULL)) {
		goto err;
	}

	ext_printf("%s: ", msg);
	for (i = 0; i < (u32)buflen; i++) {
		ext_printf("%02x", buf[i]);
	}
	ext_printf("\n");

err:
	return;
}