You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
232 B
10 lines
232 B
9 years ago
|
#include "utils.h"
|
||
|
#include <ccan/str/hex/hex.h>
|
||
|
|
||
|
char *tal_hexstr(const tal_t *ctx, const void *data, size_t len)
|
||
|
{
|
||
|
char *str = tal_arr(ctx, char, hex_str_size(len));
|
||
|
hex_encode(data, len, str, hex_str_size(len));
|
||
|
return str;
|
||
|
}
|