opnsense-src/crypto/libecc/src/utils/print_buf.c
Kyle Evans f0865ec990 Add 'crypto/libecc/' from commit '736d663976d1768533badbf06581481d01fade4c'
git-subtree-dir: crypto/libecc
git-subtree-mainline: f59bb61e1e
git-subtree-split: 736d663976
2025-01-01 15:11:18 -06:00

31 lines
684 B
C

/*
* 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;
}