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.
17 lines
493 B
17 lines
493 B
4 years ago
|
#ifndef LIGHTNING_COMMON_DESCRIPTOR_CHECKSUM_H
|
||
|
#define LIGHTNING_COMMON_DESCRIPTOR_CHECKSUM_H
|
||
|
#include "config.h"
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
/* https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md#reference */
|
||
|
#define DESCRIPTOR_CHECKSUM_LENGTH 8
|
||
|
|
||
|
struct descriptor_checksum {
|
||
|
char csum[DESCRIPTOR_CHECKSUM_LENGTH + 1];
|
||
|
};
|
||
|
|
||
|
bool descriptor_checksum(const char *descriptor, int desc_size,
|
||
|
struct descriptor_checksum *checksum);
|
||
|
|
||
|
#endif /* LIGHTNING_COMMON_DESCRIPTOR_CHECKSUM_H */
|