Module: Lightning::Onion::Sphinx
- Defined in:
- lib/lightning/onion/sphinx.rb
Defined Under Namespace
Modules: KeyType
Constant Summary collapse
- VERSION =
"\x00"- PAYLOAD_LENGTH =
33- MAC_LENGTH =
32- MAX_HOPS =
20- HOP_LENGTH =
PAYLOAD_LENGTH + MAC_LENGTH
- ZERO_HOP =
Lightning::Onion::HopData.parse("\x00" * HOP_LENGTH)
- LAST_PACKET =
Lightning::Onion::Packet.new(VERSION, "\x00" * PAYLOAD_LENGTH, [ZERO_HOP] * MAX_HOPS, "\x00" * MAC_LENGTH)
Class Method Summary collapse
- .compute_blinding_factor(public_key, secret) ⇒ Object
- .compute_ephemereal_public_keys_and_shared_secrets(session_key, public_keys) ⇒ Object
- .compute_shared_secret(public_key, secret) ⇒ Object
- .generate_cipher_stream(key, length) ⇒ Object
- .generate_filler(key_type, shared_secrets, hop_size, max_number_of_hops = MAX_HOPS) ⇒ Object
-
.generate_key(key_type, secret) ⇒ Object
Key generation.
- .hmac256(key, message) ⇒ Object
- .internal_compute_ephemereal_public_keys_and_shared_secrets(session_key, public_keys, ephemereal_public_keys, blinding_factors, shared_secrets) ⇒ Object
- .loop(hop_payloads, keys, shared_secrets, packet, associated_data) ⇒ Object
- .mac(key, message) ⇒ Object
- .make_blind(public_key, blinding_factor) ⇒ Object
- .make_blinds(public_key, blinding_factors) ⇒ Object
- .make_next_packet(payload, associated_data, ephemereal_public_key, shared_secret, packet, filler = '') ⇒ Object
- .make_packet(session_key, public_keys, payloads, associated_data) ⇒ Object
- .parse(private_key, raw_packet) ⇒ Object
- .xor(a, b) ⇒ Object
Class Method Details
.compute_blinding_factor(public_key, secret) ⇒ Object
91 92 93 |
# File 'lib/lightning/onion/sphinx.rb', line 91 def self.compute_blinding_factor(public_key, secret) Bitcoin.sha256(public_key.htb + secret.htb).bth end |
.compute_ephemereal_public_keys_and_shared_secrets(session_key, public_keys) ⇒ Object
49 50 51 52 53 54 55 56 |
# File 'lib/lightning/onion/sphinx.rb', line 49 def self.compute_ephemereal_public_keys_and_shared_secrets(session_key, public_keys) point = ECDSA::Group::Secp256k1.generator generator_pubkey = ECDSA::Format::PointOctetString.encode(point, compression: true) ephemereal_public_key0 = make_blind(generator_pubkey.bth, session_key) secret0 = compute_shared_secret(public_keys[0], session_key) blinding_factor0 = compute_blinding_factor(ephemereal_public_key0, secret0) internal_compute_ephemereal_public_keys_and_shared_secrets(session_key, public_keys[1..-1], [ephemereal_public_key0], [blinding_factor0], [secret0]) end |
.compute_shared_secret(public_key, secret) ⇒ Object
84 85 86 87 88 89 |
# File 'lib/lightning/onion/sphinx.rb', line 84 def self.compute_shared_secret(public_key, secret) scalar = ECDSA::Format::IntegerOctetString.decode(secret.htb) point = Bitcoin::Key.new(pubkey: public_key).to_point.multiply_by_scalar(scalar) public_key = ECDSA::Format::PointOctetString.encode(point, compression: true) Bitcoin.sha256(public_key).bth end |
.generate_cipher_stream(key, length) ⇒ Object
121 122 123 |
# File 'lib/lightning/onion/sphinx.rb', line 121 def self.generate_cipher_stream(key, length) Lightning::Onion::ChaCha20.chacha20_encrypt(key, 0, "\x00" * 12, "\x00" * length) end |
.generate_filler(key_type, shared_secrets, hop_size, max_number_of_hops = MAX_HOPS) ⇒ Object
95 96 97 98 99 100 101 102 103 104 |
# File 'lib/lightning/onion/sphinx.rb', line 95 def self.generate_filler(key_type, shared_secrets, hop_size, max_number_of_hops = MAX_HOPS) shared_secrets.inject([]) do |padding, secret| key = generate_key(key_type, secret) padding1 = padding + [0] * hop_size stream = generate_cipher_stream(key, hop_size * (max_number_of_hops + 1)) stream = stream.reverse[0...padding1.size].reverse.unpack('c*') new_padding = xor(padding1, stream) new_padding end.pack('C*').bth end |
.generate_key(key_type, secret) ⇒ Object
Key generation
117 118 119 |
# File 'lib/lightning/onion/sphinx.rb', line 117 def self.generate_key(key_type, secret) hmac256(key_type, secret.htb) end |
.hmac256(key, message) ⇒ Object
112 113 114 |
# File 'lib/lightning/onion/sphinx.rb', line 112 def self.hmac256(key, ) OpenSSL::HMAC.digest(OpenSSL::Digest::SHA256.new, key, ) end |
.internal_compute_ephemereal_public_keys_and_shared_secrets(session_key, public_keys, ephemereal_public_keys, blinding_factors, shared_secrets) ⇒ Object
58 59 60 61 62 63 64 65 66 67 68 69 70 |
# File 'lib/lightning/onion/sphinx.rb', line 58 def self.internal_compute_ephemereal_public_keys_and_shared_secrets(session_key, public_keys, ephemereal_public_keys, blinding_factors, shared_secrets) if public_keys.empty? [ephemereal_public_keys, shared_secrets] else ephemereal_public_key = make_blind(ephemereal_public_keys.last, blinding_factors.last) secret = compute_shared_secret(make_blinds(public_keys.first, blinding_factors), session_key) blinding_factor = compute_blinding_factor(ephemereal_public_key, secret) ephemereal_public_keys << ephemereal_public_key blinding_factors << blinding_factor shared_secrets << secret internal_compute_ephemereal_public_keys_and_shared_secrets(session_key, public_keys[1..-1], ephemereal_public_keys, blinding_factors, shared_secrets) end end |
.loop(hop_payloads, keys, shared_secrets, packet, associated_data) ⇒ Object
15 16 17 18 19 |
# File 'lib/lightning/onion/sphinx.rb', line 15 def self.loop(hop_payloads, keys, shared_secrets, packet, associated_data) return packet if hop_payloads.empty? next_packet = make_next_packet(hop_payloads.last, associated_data, keys.last, shared_secrets.last, packet) loop(hop_payloads[0...-1], keys[0...-1], shared_secrets[0...-1], next_packet, associated_data) end |
.mac(key, message) ⇒ Object
129 130 131 |
# File 'lib/lightning/onion/sphinx.rb', line 129 def self.mac(key, ) hmac256(key, .pack('C*'))[0...MAC_LENGTH] end |
.make_blind(public_key, blinding_factor) ⇒ Object
72 73 74 75 76 77 78 |
# File 'lib/lightning/onion/sphinx.rb', line 72 def self.make_blind(public_key, blinding_factor) point = Bitcoin::Key.new(pubkey: public_key).to_point scalar = ECDSA::Format::IntegerOctetString.decode(blinding_factor.htb) point = point.multiply_by_scalar(scalar) public_key = ECDSA::Format::PointOctetString.encode(point, compression: true) public_key.bth end |
.make_blinds(public_key, blinding_factors) ⇒ Object
80 81 82 |
# File 'lib/lightning/onion/sphinx.rb', line 80 def self.make_blinds(public_key, blinding_factors) blinding_factors.inject(public_key) { |p, factor| make_blind(p, factor) } end |
.make_next_packet(payload, associated_data, ephemereal_public_key, shared_secret, packet, filler = '') ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/lightning/onion/sphinx.rb', line 29 def self.make_next_packet(payload, associated_data, ephemereal_public_key, shared_secret, packet, filler = '') hops_data1 = payload.htb << packet.hmac << packet.hops_data.map(&:to_payload).join[0...-HOP_LENGTH] stream = generate_cipher_stream(generate_key('rho', shared_secret), MAX_HOPS * HOP_LENGTH) hops_data2 = xor(hops_data1.unpack('C*'), stream.unpack('C*')) next_hops_data = if filler.empty? hops_data2 else hops_data2[0...-filler.htb.unpack('C*').size] + filler.htb.unpack('C*') end next_hmac = mac(generate_key('mu', shared_secret), next_hops_data + associated_data.htb.unpack('C*')) hops_data = [] 20.times do |i| payload = next_hops_data.pack('C*')[i * HOP_LENGTH...(i + 1) * HOP_LENGTH] hops_data << Lightning::Onion::HopData.parse(payload) end Lightning::Onion::Packet.new(VERSION, ephemereal_public_key, hops_data, next_hmac) end |
.make_packet(session_key, public_keys, payloads, associated_data) ⇒ Object
21 22 23 24 25 26 27 |
# File 'lib/lightning/onion/sphinx.rb', line 21 def self.make_packet(session_key, public_keys, payloads, associated_data) ephemereal_public_keys, shared_secrets = compute_ephemereal_public_keys_and_shared_secrets(session_key, public_keys) filler = generate_filler('rho', shared_secrets[0...-1], HOP_LENGTH, MAX_HOPS) last_packet = make_next_packet(payloads.last, associated_data, ephemereal_public_keys.last, shared_secrets.last, LAST_PACKET, filler) packet = loop(payloads[0...-1], ephemereal_public_keys[0...-1], shared_secrets[0...-1], last_packet, associated_data) [packet, shared_secrets.zip(public_keys)] end |
.parse(private_key, raw_packet) ⇒ Object
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
# File 'lib/lightning/onion/sphinx.rb', line 133 def self.parse(private_key, raw_packet) packet = Lightning::Onion::Packet.parse(raw_packet) shared_secret = compute_shared_secret(packet.public_key, private_key) rho = generate_key('rho', shared_secret) bin = xor( (packet.hops_data.map(&:to_payload).join + "\x00" * HOP_LENGTH).unpack('C*'), generate_cipher_stream(rho, HOP_LENGTH + MAX_HOPS * HOP_LENGTH).unpack('C*') ) payload = bin[0...PAYLOAD_LENGTH].pack('C*') hmac = bin[PAYLOAD_LENGTH...HOP_LENGTH].pack('C*') next_hops_data = bin[HOP_LENGTH..-1] next_public_key = make_blind(packet.public_key, compute_blinding_factor(packet.public_key, shared_secret)) hops_data = [] 20.times do |i| hop_payload = next_hops_data.pack('C*')[i * HOP_LENGTH...(i + 1) * HOP_LENGTH] hops_data << Lightning::Onion::HopData.parse(hop_payload) end [payload, Lightning::Onion::Packet.new(VERSION, next_public_key, hops_data, hmac), shared_secret] end |
.xor(a, b) ⇒ Object
125 126 127 |
# File 'lib/lightning/onion/sphinx.rb', line 125 def self.xor(a, b) a.zip(b).map { |x, y| ((x ^ y) & 0xff) } end |