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.
15 lines
423 B
15 lines
423 B
#ifndef LIGHTNING_BITCOIN_ADDRESS_H
|
|
#define LIGHTNING_BITCOIN_ADDRESS_H
|
|
#include <openssl/ripemd.h>
|
|
#include <ccan/short_types/short_types.h>
|
|
|
|
struct pubkey;
|
|
|
|
/* An address is the RIPEMD160 of the SHA of the public key. */
|
|
struct bitcoin_address {
|
|
u8 addr[RIPEMD160_DIGEST_LENGTH]; /* 20 */
|
|
};
|
|
|
|
void bitcoin_address(const struct pubkey *key,
|
|
struct bitcoin_address *addr);
|
|
#endif /* LIGHTNING_BITCOIN_ADDRESS_H */
|
|
|