Skip to content

Commit 991caa6

Browse files
committed
Use regular hmac comparison in onion failure processing
Because this method is used by the sender of the payment after the htlc has been resolved, there is no information that can leak to downstream nodes. Revert to a regular comparison for better performance and easier fuzzing.
1 parent 07c5b99 commit 991caa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/ln/onion_utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1160,7 +1160,7 @@ where
11601160
let mut hmac = HmacEngine::<Sha256>::new(&um);
11611161
hmac.input(&encrypted_packet.data[32..]);
11621162

1163-
if !fixed_time_eq(&Hmac::from_engine(hmac).to_byte_array(), &encrypted_packet.data[..32]) {
1163+
if &Hmac::from_engine(hmac).to_byte_array() != &encrypted_packet.data[..32] {
11641164
continue;
11651165
}
11661166

0 commit comments

Comments
 (0)