We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rustfmt
crypto/mod.rs
1 parent 41e45d3 commit 97bf93aCopy full SHA for 97bf93a
lightning/src/crypto/chacha20.rs
@@ -120,7 +120,7 @@ mod real_chacha {
120
b1,b2,b3,b4,
121
c1,c2,c3,c4,
122
d1,d2,d3,d4
123
- ];
+ ];
124
for i in 0..lens.len() {
125
$output[i * 4..(i + 1) * 4].copy_from_slice(&lens[i].to_le_bytes());
126
}
lightning/src/crypto/mod.rs
@@ -2,8 +2,8 @@
2
use bitcoin::hashes::cmp::fixed_time_eq;
3
4
pub(crate) mod chacha20;
5
+pub(crate) mod chacha20poly1305rfc;
6
#[cfg(not(fuzzing))]
7
pub(crate) mod poly1305;
-pub(crate) mod chacha20poly1305rfc;
8
pub(crate) mod streams;
9
pub(crate) mod utils;
0 commit comments