xref: /freebsd/crypto/libecc/include/libecc/utils/print_buf.h (revision f0865ec9906d5a18fa2a3b61381f22ce16e606ad)
1 /*
2  *  Copyright (C) 2021 - This file is part of libecc project
3  *
4  *  Authors:
5  *      Ryad BENADJILA <ryadbenadjila@gmail.com>
6  *      Arnaud EBALARD <arnaud.ebalard@ssi.gouv.fr>
7  *
8  *  This software is licensed under a dual BSD and GPL v2 license.
9  *  See LICENSE file at the root folder of the project.
10  */
11 #ifndef __PRINT_BUF_H__
12 #define __PRINT_BUF_H__
13 
14 #include <libecc/words/words.h>
15 
16 void buf_print(const char *msg, const u8 *buf, u16 buflen);
17 
18 #endif /* __PRINT_BUF_H__ */
19