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.
37 lines
1.1 KiB
37 lines
1.1 KiB
#ifndef LIGHTNING_LIGHTNINGD_CRYPTOMSG_H
|
|
#define LIGHTNING_LIGHTNINGD_CRYPTOMSG_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
#include <ccan/tal/tal.h>
|
|
|
|
struct io_conn;
|
|
struct peer;
|
|
struct sha256;
|
|
|
|
/* Initializes peer->crypto_state */
|
|
struct crypto_state *crypto_state(struct peer *peer,
|
|
const struct sha256 *sk,
|
|
const struct sha256 *rk,
|
|
const struct sha256 *rck,
|
|
const struct sha256 *sck,
|
|
u64 rn, u64 sn);
|
|
|
|
/* Get decrypted message */
|
|
struct io_plan *peer_read_message(struct io_conn *conn,
|
|
struct crypto_state *cs,
|
|
struct io_plan *(*next)(struct io_conn *,
|
|
struct peer *,
|
|
u8 *msg));
|
|
|
|
/* Sends and frees message */
|
|
struct io_plan *peer_write_message(struct io_conn *conn,
|
|
struct crypto_state *cs,
|
|
const u8 *msg,
|
|
struct io_plan *(*next)(struct io_conn *,
|
|
struct peer *));
|
|
|
|
void towire_crypto_state(u8 **pptr, const struct crypto_state *cs);
|
|
struct crypto_state *fromwire_crypto_state(const tal_t *ctx,
|
|
const u8 **ptr, size_t *max);
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_CRYPTOMSG_H */
|
|
|