mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
45533584e2
Get with the modern nomenclature: the pubkey inside a blinded path is called the `path_key` now. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
36 lines
1.3 KiB
C
36 lines
1.3 KiB
C
#ifndef LIGHTNING_COMMON_ONION_MESSAGE_PARSE_H
|
|
#define LIGHTNING_COMMON_ONION_MESSAGE_PARSE_H
|
|
#include "config.h"
|
|
#include <bitcoin/privkey.h>
|
|
#include <common/amount.h>
|
|
|
|
struct tlv_onionmsg_tlv;
|
|
struct sciddir_or_pubkey;
|
|
struct pubkey;
|
|
|
|
/**
|
|
* onion_message_parse: core routine to check onion_message
|
|
* @ctx: context to allocate @next_onion_msg or @final_om/@path_id off
|
|
* @onion_message_packet: Sphinx-encrypted onion
|
|
* @path_key: Path_Key we were given for @onion_message_packet
|
|
* @me: my pubkey
|
|
* @next_onion_msg (out): set if we should forward, otherwise NULL.
|
|
* @next_node (out): set to node id or scid to fwd to, iff *@next_onion_msg.
|
|
* @final_om (out): set if we're the final hop, otherwise NULL.
|
|
* @final_alias (out): our alias (if *@final_om), or our own ID
|
|
* @final_path_id (out): secret enclosed, if any (iff *@final_om).
|
|
*
|
|
* Returns NULL if it was valid, otherwise an error string.
|
|
*/
|
|
const char *onion_message_parse(const tal_t *ctx,
|
|
const u8 *onion_message_packet,
|
|
const struct pubkey *path_key,
|
|
const struct pubkey *me,
|
|
u8 **next_onion_msg,
|
|
struct sciddir_or_pubkey *next_node,
|
|
struct tlv_onionmsg_tlv **final_om,
|
|
struct pubkey *final_alias,
|
|
struct secret **final_path_id);
|
|
|
|
#endif /* LIGHTNING_COMMON_ONION_MESSAGE_PARSE_H */
|