Each header should only include the other headers it needs to compile; `devtools/reduce-includes.sh */*.h` does this. The C files then need additional includes if they don't compile. And remove the entirely useless wire/onion_wire.h, which only serves to include wire/onion_wiregen.h. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
32 lines
887 B
C
32 lines
887 B
C
#ifndef LIGHTNING_COMMON_CRYPTOMSG_H
|
|
#define LIGHTNING_COMMON_CRYPTOMSG_H
|
|
#include "config.h"
|
|
#include <common/crypto_state.h>
|
|
|
|
/* BOLT #8:
|
|
*
|
|
* ### Receiving and Decrypting Messages
|
|
*
|
|
* In order to decrypt the _next_ message in the network stream, the
|
|
* following steps are completed:
|
|
*
|
|
* 1. Read _exactly_ 18 bytes from the network buffer.
|
|
*/
|
|
#define CRYPTOMSG_HDR_SIZE 18
|
|
|
|
/* BOLT #8:
|
|
*
|
|
* 4. Read _exactly_ `l+16` bytes from the network buffer
|
|
*/
|
|
#define CRYPTOMSG_BODY_OVERHEAD 16
|
|
|
|
/* Low-level functions for sync comms: doesn't discard unknowns! */
|
|
u8 *cryptomsg_encrypt_msg(const tal_t *ctx,
|
|
struct crypto_state *cs,
|
|
const u8 *msg);
|
|
bool cryptomsg_decrypt_header(struct crypto_state *cs, const u8 hdr[18],
|
|
u16 *lenp);
|
|
u8 *cryptomsg_decrypt_body(const tal_t *ctx,
|
|
struct crypto_state *cs, const u8 *in);
|
|
#endif /* LIGHTNING_COMMON_CRYPTOMSG_H */
|