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.
29 lines
973 B
29 lines
973 B
8 years ago
|
#ifndef LIGHTNING_LIGHTNINGD_KEY_DERIVE_H
|
||
|
#define LIGHTNING_LIGHTNINGD_KEY_DERIVE_H
|
||
|
#include "config.h"
|
||
|
|
||
|
struct pubkey;
|
||
|
|
||
|
/* For `localkey`, `remotekey`, `local-delayedkey` and `remote-delayedkey` */
|
||
|
bool derive_simple_key(const struct pubkey *basepoint,
|
||
|
const struct pubkey *per_commitment_point,
|
||
|
struct pubkey *key);
|
||
|
|
||
|
bool derive_simple_privkey(const struct privkey *base_secret,
|
||
|
const struct pubkey *basepoint,
|
||
|
const struct pubkey *per_commitment_point,
|
||
|
struct privkey *key);
|
||
|
|
||
|
/* For `revocationkey` */
|
||
|
bool derive_revocation_key(const struct pubkey *basepoint,
|
||
|
const struct pubkey *per_commitment_point,
|
||
|
struct pubkey *key);
|
||
|
|
||
|
bool derive_revocation_privkey(const struct privkey *base_secret,
|
||
|
const struct privkey *per_commitment_secret,
|
||
|
const struct pubkey *basepoint,
|
||
|
const struct pubkey *per_commitment_point,
|
||
|
struct privkey *key);
|
||
|
|
||
|
#endif /* LIGHTNING_LIGHTNINGD_KEY_DERIVE_H */
|