minor changes to epk3

This commit is contained in:
theubusu
2025-10-09 21:27:23 +02:00
parent 348d592cf6
commit 20eddc3a1c
2 changed files with 5 additions and 2 deletions
+2 -1
View File
@@ -8,4 +8,5 @@
- Samsung MSD10(Legacy and Tizen 2015) - Complete
- Samsung MSD11(Tizen 2016+) - Complete
- Panasonic SDDL.SEC(2011+) - Complete
- LG Epk2 (Crypted and plain header)- Should be complete, but needs some more testing
- LG Epk2 (Crypted and plain header)- 100% complete (unless unencrypted versions exist >)
- LG epk3 - Probably fine??? but needs more testing (and more stolen keys)
+3 -1
View File
@@ -100,7 +100,7 @@ pub fn extract_epk3(mut file: &File, output_folder: &str) -> Result<(), Box<dyn
let mut segment_size = u32::from_le_bytes(segment_size_b.try_into().unwrap());
//
println!("\nPak - {}, Size: {}, Segment Count: {}",
println!("\nPak - {}, Size: {}, Segments: {}",
package_name, package_size, segment_count);
for i in 0..segment_count {
@@ -135,5 +135,7 @@ pub fn extract_epk3(mut file: &File, output_folder: &str) -> Result<(), Box<dyn
}
}
println!("\nExtraction finished!");
Ok(())
}