2055b4087749ada5b3baef731770608baceb629e
[rust-lightning] / lightning / src / util / message_signing.rs
1 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
2 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
4 // You may not use this file except in accordance with one or both of these
5 // licenses.
6
7 //! Lightning message signing and verification lives here. These tools can be used to sign messages using the node's
8 //! secret so receivers are sure that they come from you. You can also use this to verify that a given message comes
9 //! from a specific node.
10 //! Furthermore, these tools can be used to sign / verify messages using ephemeral keys not tied to node's identities.
11 //!
12 //! Note this is not part of the specs, but follows lnd's signing and verifying protocol, which can is defined as follows:
13 //!
14 //! signature = zbase32(SigRec(sha256d(("Lightning Signed Message:" + msg)))
15 //! zbase32 from <https://philzimmermann.com/docs/human-oriented-base-32-encoding.txt>
16 //! SigRec has first byte 31 + recovery id, followed by 64 byte sig.
17 //!
18 //! This implementation is compatible with both lnd's and c-lightning's
19 //!
20 //! <https://lightning.readthedocs.io/lightning-signmessage.7.html>
21 //! <https://api.lightning.community/#signmessage>
22
23 use prelude::*;
24 use crate::util::zbase32;
25 use bitcoin::hashes::{sha256d, Hash};
26 use bitcoin::secp256k1::recovery::{RecoverableSignature, RecoveryId};
27 use bitcoin::secp256k1::{Error, Message, PublicKey, Secp256k1, SecretKey};
28
29 static LN_MESSAGE_PREFIX: &[u8] = b"Lightning Signed Message:";
30
31 fn sigrec_encode(sig_rec: RecoverableSignature) -> Vec<u8> {
32     let (rid, rsig) = sig_rec.serialize_compact();
33     let prefix = rid.to_i32() as u8 + 31;
34
35     [&[prefix], &rsig[..]].concat()
36 }
37
38 fn sigrec_decode(sig_rec: Vec<u8>) -> Result<RecoverableSignature, Error> {
39     let rsig = &sig_rec[1..];
40     let rid = sig_rec[0] as i32 - 31;
41
42     match RecoveryId::from_i32(rid) {
43         Ok(x) => RecoverableSignature::from_compact(rsig, x),
44         Err(e) => Err(e)
45     }
46 }
47
48 /// Creates a digital signature of a message given a SecretKey, like the node's secret.
49 /// A receiver knowing the PublicKey (e.g. the node's id) and the message can be sure that the signature was generated by the caller.
50 /// Signatures are EC recoverable, meaning that given the message and the signature the PublicKey of the signer can be extracted.
51 pub fn sign(msg: &[u8], sk: &SecretKey) -> Result<String, Error> {
52     let secp_ctx = Secp256k1::signing_only();
53     let msg_hash = sha256d::Hash::hash(&[LN_MESSAGE_PREFIX, msg].concat());
54
55     let sig = secp_ctx.sign_recoverable(&Message::from_slice(&msg_hash)?, sk);
56     Ok(zbase32::encode(&sigrec_encode(sig)))
57 }
58
59 /// Recovers the PublicKey of the signer of the message given the message and the signature.
60 pub fn recover_pk(msg: &[u8], sig: &str) ->  Result<PublicKey, Error> {
61     let secp_ctx = Secp256k1::verification_only();
62     let msg_hash = sha256d::Hash::hash(&[LN_MESSAGE_PREFIX, msg].concat());
63
64     match zbase32::decode(&sig) {
65         Ok(sig_rec) => {
66             match sigrec_decode(sig_rec) {
67                 Ok(sig) => secp_ctx.recover(&Message::from_slice(&msg_hash)?, &sig),
68                 Err(e) => Err(e)
69             }
70         },
71         Err(_) => Err(Error::InvalidSignature)
72     }
73 }
74
75 /// Verifies a message was signed by a PrivateKey that derives to a given PublicKey, given a message, a signature,
76 /// and the PublicKey.
77 pub fn verify(msg: &[u8], sig: &str, pk: &PublicKey) -> bool {
78     match recover_pk(msg, sig) {
79         Ok(x) => x == *pk,
80         Err(_) => false
81     }
82 }
83
84 #[cfg(test)]
85 mod test {
86     use core::str::FromStr;
87     use util::message_signing::{sign, recover_pk, verify};
88     use bitcoin::secp256k1::key::ONE_KEY;
89     use bitcoin::secp256k1::{PublicKey, Secp256k1};
90
91     #[test]
92     fn test_sign() {
93         let message = "test message";
94         let zbase32_sig = sign(message.as_bytes(), &ONE_KEY);
95
96         assert_eq!(zbase32_sig.unwrap(), "d9tibmnic9t5y41hg7hkakdcra94akas9ku3rmmj4ag9mritc8ok4p5qzefs78c9pqfhpuftqqzhydbdwfg7u6w6wdxcqpqn4sj4e73e")
97     }
98
99     #[test]
100     fn test_recover_pk() {
101         let message = "test message";
102         let sig = "d9tibmnic9t5y41hg7hkakdcra94akas9ku3rmmj4ag9mritc8ok4p5qzefs78c9pqfhpuftqqzhydbdwfg7u6w6wdxcqpqn4sj4e73e";
103         let pk = recover_pk(message.as_bytes(), sig);
104
105         assert_eq!(pk.unwrap(), PublicKey::from_secret_key(&Secp256k1::signing_only(), &ONE_KEY))
106     }
107
108     #[test]
109     fn test_verify() {
110         let message = "another message";
111         let sig = sign(message.as_bytes(), &ONE_KEY).unwrap();
112         let pk = PublicKey::from_secret_key(&Secp256k1::signing_only(), &ONE_KEY);
113
114         assert!(verify(message.as_bytes(), &sig, &pk))
115     }
116
117     #[test]
118     fn test_verify_ground_truth_ish() {
119         // There are no standard tests vectors for Sign/Verify, using the same tests vectors as c-lightning to see if they are compatible.
120         // Taken from https://github.com/ElementsProject/lightning/blob/1275af6fbb02460c8eb2f00990bb0ef9179ce8f3/tests/test_misc.py#L1925-L1938
121
122         let corpus = [
123             ["@bitconner",
124              "is this compatible?",
125              "rbgfioj114mh48d8egqx8o9qxqw4fmhe8jbeeabdioxnjk8z3t1ma1hu1fiswpakgucwwzwo6ofycffbsqusqdimugbh41n1g698hr9t",
126              "02b80cabdf82638aac86948e4c06e82064f547768dcef977677b9ea931ea75bab5"],
127             ["@duck1123",
128              "hi",
129              "rnrphcjswusbacjnmmmrynh9pqip7sy5cx695h6mfu64iac6qmcmsd8xnsyczwmpqp9shqkth3h4jmkgyqu5z47jfn1q7gpxtaqpx4xg",
130              "02de60d194e1ca5947b59fe8e2efd6aadeabfb67f2e89e13ae1a799c1e08e4a43b"],
131             ["@jochemin",
132              "hi",
133              "ry8bbsopmduhxy3dr5d9ekfeabdpimfx95kagdem7914wtca79jwamtbw4rxh69hg7n6x9ty8cqk33knbxaqftgxsfsaeprxkn1k48p3",
134              "022b8ece90ee891cbcdac0c1cc6af46b73c47212d8defbce80265ac81a6b794931"],
135         ];
136
137         for c in &corpus {
138             assert!(verify(c[1].as_bytes(), c[2], &PublicKey::from_str(c[3]).unwrap()))
139         }
140     }
141 }