mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
5787e18e69
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
21 lines
415 B
C
21 lines
415 B
C
#include "config.h"
|
|
|
|
#include <common/descriptor_checksum.h>
|
|
#include <tests/fuzz/libfuzz.h>
|
|
|
|
void init(int *argc, char ***argv)
|
|
{
|
|
}
|
|
|
|
void run(const uint8_t *data, size_t size)
|
|
{
|
|
char *string;
|
|
struct descriptor_checksum checksum;
|
|
|
|
/* We should not crash nor overflow the checksum buffer. */
|
|
|
|
string = to_string(NULL, data, size);
|
|
descriptor_checksum(string, tal_count(string), &checksum);
|
|
tal_free(string);
|
|
}
|