X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning%2Fsrc%2Fblinded_path%2Fmod.rs;h=89087a10cd414ac9fdeae4331490ef97e73666ea;hb=7a992ba40f6192bce138cf3eafdf41c3d050b9f7;hp=691eda29a9f3567f3e0b48b7656e07322c5866a0;hpb=9777485ed70689d55caf988b13ff7b7a0204429f;p=rust-lightning diff --git a/lightning/src/blinded_path/mod.rs b/lightning/src/blinded_path/mod.rs index 691eda29..89087a10 100644 --- a/lightning/src/blinded_path/mod.rs +++ b/lightning/src/blinded_path/mod.rs @@ -9,6 +9,7 @@ //! Creating blinded paths and related utilities live here. +pub mod payment; pub(crate) mod message; pub(crate) mod utils; @@ -73,6 +74,27 @@ impl BlindedPath { blinded_hops: message::blinded_hops(secp_ctx, node_pks, &blinding_secret).map_err(|_| ())?, }) } + + /// Create a blinded path for a payment, to be forwarded along `path`. The last node + /// in `path` will be the destination node. + /// + /// Errors if `path` is empty or a node id in `path` is invalid. + // TODO: make all payloads the same size with padding + add dummy hops + pub fn new_for_payment( + intermediate_nodes: &[(PublicKey, payment::ForwardTlvs)], payee_node_id: PublicKey, + payee_tlvs: payment::ReceiveTlvs, entropy_source: &ES, secp_ctx: &Secp256k1 + ) -> Result { + let blinding_secret_bytes = entropy_source.get_secure_random_bytes(); + let blinding_secret = SecretKey::from_slice(&blinding_secret_bytes[..]).expect("RNG is busted"); + + Ok(BlindedPath { + introduction_node_id: intermediate_nodes.first().map_or(payee_node_id, |n| n.0), + blinding_point: PublicKey::from_secret_key(secp_ctx, &blinding_secret), + blinded_hops: payment::blinded_hops( + secp_ctx, intermediate_nodes, payee_node_id, payee_tlvs, &blinding_secret + ).map_err(|_| ())?, + }) + } } impl Writeable for BlindedPath {