mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-21 08:04:26 +01:00
Move bitcoin stuff into bitcoin subdir.
It's not very interesting if you're looking for LN code. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
14
bitcoin/shadouble.h
Normal file
14
bitcoin/shadouble.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef LIGHTNING_BITCOIN_SHADOUBLE_H
|
||||
#define LIGHTNING_BITCOIN_SHADOUBLE_H
|
||||
#include "config.h"
|
||||
#include <ccan/crypto/sha256/sha256.h>
|
||||
|
||||
/* To explicitly distinguish between single sha and bitcoin's standard double */
|
||||
struct sha256_double {
|
||||
struct sha256 sha;
|
||||
};
|
||||
|
||||
void sha256_double(struct sha256_double *shadouble, const void *p, size_t len);
|
||||
|
||||
void sha256_double_done(struct sha256_ctx *sha256, struct sha256_double *res);
|
||||
#endif /* LIGHTNING_BITCOIN_SHADOUBLE_H */
|
||||
Reference in New Issue
Block a user