mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-23 15:00:34 +01:00
This is a rebased and combined patch for Tor support. It is extensively reworked in the following patches, but the basis remains Saibato's work, so it seemed fairest to begin with this. Minor changes: 1. Use --announce-addr instead of --tor-external. 2. I also reverted some whitespace and unrelated changes from the patch. 3. Removed unnecessary ';' after } in functions. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
10 lines
264 B
C
10 lines
264 B
C
#ifndef LIGHTNING_COMMON_BASE32_H
|
|
#define LIGHTNING_COMMON_BASE32_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
|
|
|
|
char *b32_encode(char *dst, u8 * src, u8 ver);
|
|
void b32_decode(u8 * dst, u8 * src, u8 ver);
|
|
|
|
#endif /* LIGHTNING_COMMON_BASE32_H */
|