mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-03 20:44:54 +01:00
d20ddb5a90
We still use openssl for bignums (base58) and for ripemd. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
11 lines
239 B
C
11 lines
239 B
C
#ifndef LIGHTNING_BITCOIN_PRIVKEY_H
|
|
#define LIGHTNING_BITCOIN_PRIVKEY_H
|
|
#include <ccan/short_types/short_types.h>
|
|
|
|
/* This is a private key. Keep it secret. */
|
|
struct privkey {
|
|
u8 secret[32];
|
|
};
|
|
|
|
#endif /* LIGHTNING_BITCOIN_PRIVKEY_H */
|