diff options
author | Ladislav <Zezula> | 2013-03-12 16:57:02 +0100 |
---|---|---|
committer | Ladislav <Zezula> | 2013-03-12 16:57:02 +0100 |
commit | 9605e57854087ac220526008c8b23ce7b2171dff (patch) | |
tree | 5c81b4cf5564a1401b2f2c8e87f4fdfc855c05d0 /src/FileStream.cpp | |
parent | 46af69aeb25c5a4c5f967067862aa33a36d2c786 (diff) |
Heart of the Swarm Release
+ Added decryption key for encrypted MPQs from Heart of the Swarm
background downloader
+ Small update of CMakeList.txt (thanks, Pali)
Diffstat (limited to 'src/FileStream.cpp')
-rw-r--r-- | src/FileStream.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/FileStream.cpp b/src/FileStream.cpp index 1a21170..0c668dc 100644 --- a/src/FileStream.cpp +++ b/src/FileStream.cpp @@ -1394,6 +1394,11 @@ static const char * szKeyTemplate = "expand 32-byte k000000000000000000000000000 static const char * AuthCodeArray[] = { + // Starcraft II (Heart of the Swarm) + // Authentication code URL: http://dist.blizzard.com/mediakey/hots-authenticationcode-bgdl.txt + // -0C- -1C--08- -18--04- -14--00- -10- + "S48B6CDTN5XEQAKQDJNDLJBJ73FDFM3U", // SC2 Heart of the Swarm-all : "expand 32-byte kQAKQ0000FM3UN5XE000073FD6CDT0000LJBJS48B0000DJND" + // Diablo III: Agent.exe (1.0.0.954) // Address of decryption routine: 00502b00 // Pointer to decryptor object: ECX @@ -1415,7 +1420,7 @@ static const char * AuthCodeArray[] = "6VWCQTN8V3ZZMRUCZXV8A8CGUX2TAA8H", // Diablo III Installer (zhTW): "expand 32-byte kMRUC0000AA8HV3ZZ0000UX2TQTN80000A8CG6VWC0000ZXV8" // "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", // Diablo III Installer (zhCN): "expand 32-byte kXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" - // Note: Starcraft II (Wings of Liberty): Installer.exe (4.1.1.4219) + // Starcraft II (Wings of Liberty): Installer.exe (4.1.1.4219) // Address of decryption routine: 0053A3D0 // Pointer to decryptor object: ECX // Pointer to key: ECX+0x5C |