Skip to content

Commit 84f5c92

Browse files
authored
fix(derive_key_from_path): check length of current_key_material (#2356)
1 parent bad498b commit 84f5c92

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

mm2src/crypto/src/key_derivation.rs

+5
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,12 @@ pub(crate) fn derive_keys_for_mnemonic(
133133

134134
/// Splits a path into its components and derives a key for each component.
135135
fn derive_key_from_path(master_node: &[u8], path: &str) -> MmResult<[u8; 32], KeyDerivationError> {
136+
if master_node.len() < 64 {
137+
return MmError::err(KeyDerivationError::InvalidKeyLength);
138+
}
139+
136140
let mut current_key_material = master_node.to_vec();
141+
137142
for segment in path.split('/').filter(|s| !s.is_empty()) {
138143
let mut mac = HmacSha512::new_from_slice(&current_key_material[..32])
139144
.map_err(|_| KeyDerivationError::HmacInitialization)?;

0 commit comments

Comments
 (0)