From 7638d7dbf84c61cfc95b050cc49f8732537cf8c2 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 16 Dec 2020 16:27:39 -0800 Subject: [PATCH] One more decrypted empty secure area --- NDecrypt/DSTool.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/NDecrypt/DSTool.cs b/NDecrypt/DSTool.cs index 7721145..d3aa993 100644 --- a/NDecrypt/DSTool.cs +++ b/NDecrypt/DSTool.cs @@ -120,7 +120,8 @@ namespace NDecrypt // Improperly decrypted empty secure area (decrypt empty with woodsec) else if ((firstValue == 0xE386C397 && secondValue == 0x82775B7E) || (firstValue == 0xF98415B8 && secondValue == 0x698068FC) - || (firstValue == 0xA71329EE && secondValue == 0x2A1D4C38)) + || (firstValue == 0xA71329EE && secondValue == 0x2A1D4C38) + || (firstValue == 0xC44DCC48 && secondValue == 0x38B6F8CB)) { Console.WriteLine("Improperly decrypted empty secure area found. Should be encrypted to get proper value."); return true;